Please help me out with this; I am trying to run the simple one-liner on multiple input files
awk -F '$2 ~ /^GOOG/ { print FILENAME, $1, $5 }' files
The problem I am having is that I am trying to run this on about 500 files and I don't know how to do that without typing in each filename. Any ideas would be greatly appreciated
awk -F '$2 ~ /^GOOG/ { print FILENAME, $1, $5 }' files
The problem I am having is that I am trying to run this on about 500 files and I don't know how to do that without typing in each filename. Any ideas would be greatly appreciated