URI:
       slightly better privacy, hide user-agent - tscrape - twitter scraper
  HTML git clone git://git.codemadness.org/tscrape
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 2e56903b8957d8d76d058fdbbb6295dd49a911c6
   DIR parent 10468e9a2e46241c75a71b73a3ec859c80776c19
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Sat, 23 Apr 2016 13:22:22 +0200
       
       slightly better privacy, hide user-agent
       
       don't send user-agent + OS info etc.
       
       Diffstat:
         M README                              |       4 ++--
         M tscrape.1                           |       6 +++---
       
       2 files changed, 5 insertions(+), 5 deletions(-)
       ---
   DIR diff --git a/README b/README
       @@ -12,11 +12,11 @@ $ make
        Usage
        -----
        
       -curl --compressed -s 'https://twitter.com/namehere/with_replies' | tscrape
       +curl -H 'User-Agent:' --compressed -s 'https://twitter.com/namehere/with_replies' | tscrape
        
        or without retweets:
        
       -curl --compressed -s 'https://twitter.com/namehere' | tscrape
       +curl -H 'User-Agent:' --compressed -s 'https://twitter.com/namehere' | tscrape
        
        
        Why
   DIR diff --git a/tscrape.1 b/tscrape.1
       @@ -1,4 +1,4 @@
       -.Dd March 8, 2016
       +.Dd April 23, 2016
        .Dt TSCRAPE 1
        .Os
        .Sh NAME
       @@ -29,12 +29,12 @@ Twitter fullname (can be a retweet).
        .El
        .Sh EXAMPLES
        .Bd -literal -offset left
       -curl --compressed -s 'https://twitter.com/namehere/with_replies' | tscrape
       +curl -H 'User-Agent:' --compressed -s 'https://twitter.com/namehere/with_replies' | tscrape
        .Ed
        .Pp
        or without retweets:
        .Bd -literal -offset left
       -curl --compressed -s 'https://twitter.com/namehere' | tscrape
       +curl -H 'User-Agent:' --compressed -s 'https://twitter.com/namehere' | tscrape
        .Ed
        .Sh SEE ALSO
        .Xr curl 1