Linux Twitter Command Line Updates

2009-05-09 Thread Lisa Kachold
Easy Twittering: In Ubuntu, install curl with apt-get install curl, then create a file paste the line below into it, modify the username and password strings: curl --basic --user username:password --data-ascii status=`echo $@|tr ' ' '+'` http://twitter.com/statuses/update.json; Save or copy the

Re: Linux Twitter Command Line Updates

2009-05-09 Thread Charles Jones
Lisa Kachold wrote: Easy Twittering: In Ubuntu, install curl with |apt-get install curl|, then create a file paste the line below into it, modify the username and password strings: |curl --basic --user username:password --data-ascii status=`echo $@|tr ' ' '+'`