Updated: 23 April 2023
Search through a directory of csv files and display the results in a table:
grep --color=always -h -r "70\.00" my-csv-files | sed "s/^[ \t]*//" | column -t -s,
--color=alwayspreserve match colour, even after piping.-hdo not show filenames.-rsearch through all files in directories.sed "s/^[ \t]*//"remove leading whitespace from lines.-tcreate a table.-s,specify the separator to use.