twitter / twurl

OAuth-enabled curl for the Twitter API
https://developer.twitter.com
MIT License
1.8k stars 301 forks source link

output is not pipeable | to programs like grep, not able to be redirected > to a file, etc #53

Closed ChunkOfStars closed 10 years ago

ChunkOfStars commented 10 years ago

unless I am doing something wrong, i am not able to do anything with what the program returns.

for example twurl /1.1/statuses/user_timeline.json?screen_name=userxyz&count=1 | grep -i id_str or twurl /1.1/statuses/user_timeline.json?screen_name=userxyz&count=1 > test.txt

both return a ton of information, they ignore the pipes and redirects

fmborghino commented 10 years ago

I think you have a couple of usage problems here.

ChunkOfStars commented 10 years ago

Thank you.