Answers for "how to filter csv file by columns"

0

how to filter csv file by columns

awk -F '","'  'BEGIN {OFS=","} { if (toupper($5) == "STRING 1")  print }' file1.csv > file2.csv
Posted by: Guest on January-18-2022

Code answers related to "how to filter csv file by columns"

Browse Popular Code Answers by Language