Source: /cirosantilli/csvgrep-from-csvkit

= csvgrep from csvkit

Simple example:
``
printf '00,11,22\n33,44,55\n' | csvgrep -H -c2 -r '^11$' | tail -n+2
``
output:
``
00,11,22
``

More verbose description:
* https://stackoverflow.com/questions/19711723/awk-to-filter-csv-files/77273608\#77273608
* https://unix.stackexchange.com/questions/97070/filter-a-csv-file-based-on-the-5th-column-values-of-a-file-and-print-those-reco/758651\#758651