Skip to content

Instantly share code, notes, and snippets.

@Velrok
Created October 3, 2012 09:52
Show Gist options
  • Save Velrok/3826125 to your computer and use it in GitHub Desktop.
Save Velrok/3826125 to your computer and use it in GitHub Desktop.
Twitter Client in 3 Bash Lines
#!/bin/bash
#thanks to http://blog.walkingsmarts.com/twitter-client-in-3-bash-lines/
read -s pass
url="http://eimantas:[email protected]/statuses/update.xml"
curl -d "status=$*" $url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment