pope (owner)

Fork Of

Revisions

gist: 143106 Download_button fork
public
Public Clone URL: git://gist.github.com/143106.git
Embed All Files: show embed
.bashrc #
1
2
3
4
5
6
7
8
9
10
11
# $ tweet Hi mom!
#
# Put this in ~/.bashrc or wherever.
# If it doesn't work, make sure your ~/.netrc is right
#
# (Thanks to @anildigital and @grundprinzip for curl-fu)
 
function tweet {
  curl -n -d status="$*" https://twitter.com/statuses/update.xml --insecure &> /dev/null
  echo "tweet'd"
}
.netrc #
1
2
3
4
# put this in ~/.netrc
machine twitter.com
login USERNAME
password PASSWORD