the following one-liner:Is parsing csv with a split not a crime in the same category as parsing html with regexes?perl -nlaF/,/ -e 'length($F[10]) < 7 and print' test.csv
After all the fields might contain escaped delimiters...
Here another attempt using Text::CSV_XS that processes the file line-by-line (Tux's solution slurps with my not be good for very large files):
perl -MText::CSV_XS=csv -ne 'print if length(csv(in => \$_)->[0]->[10]) > 6'
In reply to Re^2: perl one liner for csv file one field
by morgon
in thread perl one liner for csv file one field
by MrTEE
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |