tame: tamed --help: Add missing closing quote to awk example

main
Mike Gerwitz 2022-01-26 13:51:34 -05:00
parent 8fbddfb3b3
commit 8b255c2251
1 changed files with 1 additions and 1 deletions

View File

@ -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