/* Author: Date: 26-03-2008 Filename: twitter.sh Description: Updates your twitter status using kdialog. Probably can be modified for automated scripts */ // CODE #!/bin/bash curl -u <username>:<password> -s -F status="`kdialog --inputbox 'What are you doing?'`" http://twitter.com/statuses/update.xml
