I have a text file that I want to filter using awk. The text file is as follows:
foo 1 bar 2 bar 0.3 bar 100 qux 1033
I want to filter these files using awk inside a bash script.
#!/bin/bash
But for some reason this did not work. What is the right way to do this?
source share