README: don't set LC_ALL for awk example - tscrape - twitter scraper | |
git clone git://git.codemadness.org/tscrape | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit d34cbfb8d0bc3d985ce58ebfa3034115a0ef323d | |
parent 573905aec2e99fbe31a1cabe5864853ef9015a41 | |
Author: Hiltjo Posthuma <[email protected]> | |
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(-) | |
--- | |
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 ""; |