semifor (owner)

Fork Of

Revisions

gist: 143950 Download_button fork
public
Public Clone URL: git://gist.github.com/143950.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
#
# The Perl version
 
tweet() {
    perl -MNet::Twitter::Lite -E'say Net::Twitter::Lite->new(ssl=>1,netrc=>1)->update("@ARGV")->{id}' $*
}
 
.netrc #
1
2
3
4
# put this in ~/.netrc
machine twitter.com
login USERNAME
password PASSWORD