You are not logged in.
Pages: 1
Exactly I find this beautiful script to twitter in shell with curl but the problem it ouputs the result but I don't really like that . I want it works silence, just update, no output needed.
I'm new to shell scripting, I need help from you mates . This is the one :
twit ( ) {
curl -u usr:pass -d status="$*" http://twitter.com/statuses/
}
Last edited by nXqd (2010-08-04 05:27:44)
When you live for a strong purpose, then hard work isn't an option. It's a necessity. - Steve Pavlina
dotFiles
Offline
twit ( ) {
curl -u usr:pass -d status="$*" http://twitter.com/statuses/ > /dev/null 2>&1
}
Offline
@Cagnulein: Thanks for the comment and this is solved
When you live for a strong purpose, then hard work isn't an option. It's a necessity. - Steve Pavlina
dotFiles
Offline
Offline
Pages: 1