tame: tamed --help: Add missing closing quote to awk example
parent
8fbddfb3b3
commit
8b255c2251
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue