I am having a problem solving this, the data fields in the file can be quite long and some are too long for awk to deal with. Looking for ideas.. I do not need to use awk, I just didnt know any other solution. All records in the data file are comma delimited.
awk -F"," '{print $15}' < blah
awk: record `3147879,0,3,0,SMS_he...' has too many fields
record number 103
Broken Pipe
awk -F"," '{print $15}' < blah
awk: record `3147879,0,3,0,SMS_he...' has too many fields
record number 103
Broken Pipe