Print each line where the 5th field is equal to ‘abc123’:
awk '$5 == "abc123"' file.txt
It doesnt work
WHile following command works confirming that data is present in file
Print each line where the 5th field is equal to ‘abc123’:
awk '/abc123/' file.txt