Skip to content

Instantly share code, notes, and snippets.

@espadrine
Created November 2, 2011 18:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save espadrine/1334395 to your computer and use it in GitHub Desktop.
Save espadrine/1334395 to your computer and use it in GitHub Desktop.
Twitter bash script
#!/usr/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