This is a tab separated file, I am trying to generate a new file that contains combinations of ethanol and anything else using "awk".
also, I am trying to generate another file that contains exactly the other way around, everything but ethanol.
Please note that the word "Methanol" contains "ethanol" inside it as a string.
Also, the separation is not regular, sometimes a slash and sometimes a space.
Do you know what command i should use to get over this problem?
I am currently using this command :
awk 'BEGIN{IGNORECASE=1} $2 ~ /ethanol/' filepath
but this is giving me methanol as well. I am looking for combinations containing ethanol in one file, and everything else in another file.
Thanks for the command dude. I honestly don't understand what it means but, it worked out for me! ( i mean the first part [[ tr"/" "\t" ]])
It would be very kind if you tell me what you did up there!