I want to perform this
awk -F, '$1 ~ /F$/' file.dat
on a whole direcory of gziped files
I want to be able to loop through each file unzip it perform the above command (print out any findings) rezip and move onto the next zipped file
how can this be done?
Thanks