I have a file which contains multiple rows and 6 fields. It looks like this:
15RBLT 0 98 11 29 11
16RBLT 0 13 11 46 11
I need awk to search file beaster1_a which is this file, and print only the lines where fields 2,3, and 5 are greater than or equal to 6. I would need the whole line though. Then redirect to > beaster1_b. I know this is probably pretty easy, but I have been thrown into this and am going crazy! Please help if you can.
15RBLT 0 98 11 29 11
16RBLT 0 13 11 46 11
I need awk to search file beaster1_a which is this file, and print only the lines where fields 2,3, and 5 are greater than or equal to 6. I would need the whole line though. Then redirect to > beaster1_b. I know this is probably pretty easy, but I have been thrown into this and am going crazy! Please help if you can.