I have a file the looks something like this:
abs=1 sin=2.1 cat=curve line=3 abs=2 sin=3.4 cat=sawtooth line=8 abs=7 sin=6.3 cat=square line=4
In reality, I have several more fields and not all lines have all fields. Anyway, I want to write a script where the user can define a "mask" of the tuples they want to keep (eg abs,line) and then the script outputs a smaller version of the file with only values in the given fields.
For example, I give the script an input parameter "abs,line", it prints this:
abs=1 line=3 abs=2 line=8 abs=7 line=4
I'm doing several things like this in bash and would like to integrate into my bash script. I'm thinking awk must be able to do this, but I can't quite figure out how.