URI:
       README: don't set LC_ALL for awk example - tscrape - twitter scraper
  HTML git clone git://git.codemadness.org/tscrape
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit d34cbfb8d0bc3d985ce58ebfa3034115a0ef323d
   DIR parent 573905aec2e99fbe31a1cabe5864853ef9015a41
  HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
       Date:   Fri, 20 Mar 2020 12:01:35 +0100
       
       README: don't set LC_ALL for awk example
       
       Diffstat:
         M README                              |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/README b/README
       @@ -34,7 +34,7 @@ or
        Using sfeed to convert the tscrape TSV output to an Atom feed:
        
                hurl 'https://twitter.com/namehere' | tscrape | \
       -        LC_ALL=C awk 'BEGIN { OFS = FS = "\t"; }
       +        awk 'BEGIN { OFS = FS = "\t"; }
                {
                        print $1 OFS $4 OFS "https://twitter.com/" $6 "/status/" $5  \
                                OFS "" OFS "" OFS $5 OFS $7 OFS "";