
csvcut
List of commands for csvcut:
-
csvcut:tldr:498a7 csvcut: Print indices and names of all columns.$ csvcut -n ${data-csv}try on your machineexplain this command
-
csvcut:tldr:8074f csvcut: Extract all columns **except** the fourth one.$ csvcut -C ${4} ${data-csv}try on your machineexplain this command
-
csvcut:tldr:99012 csvcut: Extract the first and third columns.$ csvcut -c ${1,3} ${data-csv}try on your machineexplain this command