
csvtool
List of commands for csvtool:
-
csvtool:tldr:446b9 csvtool: Extract lines from a CSV file where the second column exactly matches 'Foo'.$ csvtool --column ${2} --search '${^Foo$}' ${filename-csv}try on your machineexplain this command
-
csvtool:tldr:913e8 csvtool: Find lines in a CSV file where the second column ends with 'Baz' and then extract the third and sixth columns.$ csvtool --column ${2} --search '${Baz$}' ${filename-csv} | csvtool --no-header --column ${3,6}try on your machineexplain this command
-
csvtool:tldr:a58dc csvtool: Extract the second column from a CSV file.$ csvtool --column ${2} ${filename-csv}try on your machineexplain this command