I've a CDR file(.CSV) which contains around 150 columns and is a very large file. I'm trying to get the output where the 31st column should have value "13".
I'm trying with below command:
awk -F',' '$31~/^13/' report_1.csv > report_2.csv
But getting the following error:
awk: record `,1402786,535,1,47432... has too many fields record number 1`
Any help?