AWK is a series of pairs of template actions written as:
condition { action }
The condition part is your filter.
For example, to get all the rows (the 19th column has at least 2 characters):
$ awk -F, 'length($19)>1' file.txt
When the {action} missing, the default action is to print the entry.
source share