#!/bin/bash # A command line twitter with spellcheck - me@phrog.org echo $@ > /tmp/tweet aspell -c /tmp/tweet TWIT=$(cat /tmp/tweet) curl -u USERNAME:PASSWD -d status="$TWIT" http://twitter.com/statuses/update.xml rm /tmp/tweet exit 0