salve o script abaixo como /usr/local/bin/twi
#!/bin/bash
# bash twitter v02 by @crimeboy
# requires curl
###########################
######## CONFIG
USER=SEULOGIN
PASS=SUASENHA
URL="http://twitter.com/statuses/update.xml"
###############
curl -u $USER:$PASS -d status="$*" -s -o /dev/null ${URL}
de um chmod +x nele
e pronto! basta digitar:
twi MAMAE ESTOU NO TWITTER VIA BASH!
ps.: requer o curl instalado
hahaha
Muito bom, valeu!