From 45f511dfa9c64725f7113a2a57a98435c3c1b09a Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Fri, 18 Nov 2022 20:17:31 +0100 Subject: [PATCH] distinguish column -n argument in examples Required in common 4.3BSD version, but entirely incompatible with the linux-util replacement on at least modern Debian. --- barcat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/barcat b/barcat index edc12bf..2a931c6 100755 --- a/barcat +++ b/barcat @@ -662,7 +662,7 @@ In PostgreSQL from within the client: Earthquakes worldwide magnitude 1+ in the last 24 hours: curl https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/1.0_day.csv | - column -tns, | barcat -f4 -u -l80% + column -ts, -n | barcat -f4 -u -l80% External datasets, like movies per year: @@ -689,7 +689,7 @@ Total population history in XML from the World Bank: Population and other information for all countries: curl http://download.geonames.org/export/dump/countryInfo.txt | - grep -v '^#\s' | column -tns$'\t' | barcat -f+2 -u -l150 -s + grep -v '^#\s' | column -ts$'\t' -n | barcat -f+2 -u -l150 -s And of course various Git statistics, such commit count by year: -- 2.30.0