Created
November 2, 2011 18:05
-
-
Save espadrine/1334395 to your computer and use it in GitHub Desktop.
Twitter bash script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Configure your account. | |
USER=espadrine | |
# Ask for the password. | |
echo -n password\ ; read -s PASS | |
curl -u $USER:$PASS -d status="$1" http://twitter.com/statuses/update.xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment