Automatic Twitter update via bash script and cron..
hehe.. tweet..=~ twitter.com
create a shell script (go_tweet) with following content..
date=`date`;
msg=”$1 as of $date”
curl –basic –user “username:password”
–data-ascii “status=`perl -MURI::Escape -e
“print uri_escape(‘$msg’);”`”
http://twitter.com/statuses/update.json
Replace the username:password with your tweet account ..
It is recommended to register a new one for this purpose only if security is your major concern.
put somewhere [...]



