From 8b255c2251d974f18337ef4d9e246af1464d0608 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Wed, 26 Jan 2022 13:51:34 -0500 Subject: [PATCH] tame: tamed --help: Add missing closing quote to awk example --- bin/tamed | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tamed b/bin/tamed index 70c09450..b05111a2 100755 --- a/bin/tamed +++ b/bin/tamed @@ -509,7 +509,7 @@ The table is tab-delimited. Here are some useful examples: $ cut -2,3 runtab # convert milliseconds into minutes (!) and sort desc - $ awk '{ \$2 = \$2 / 1000 / 60; print } runtab | sort -nrk2 + $ awk '{ \$2 = \$2 / 1000 / 60; print }' runtab | sort -nrk2 # convert to CSV (assuming no quoting is needed) $ tr '\t' , < runtab > runtab.csv