#!/bin/sh
USER=$1
wget -qO- \
http://twitter.com/statuses/user_timeline/$USER.xml?count=1 | \
xmlstarlet select -T -t -v '//text'
Call it like...
./twitter-status.sh twitterid
It needs:
The Twitter API...for lulz
Zach's personal blog of ramblings...
#!/bin/sh
USER=$1
wget -qO- \
http://twitter.com/statuses/user_timeline/$USER.xml?count=1 | \
xmlstarlet select -T -t -v '//text'
./twitter-status.sh twitterid
No comments:
Post a Comment