I have this command
$ cut -f2,3 AIS2F1 | grep [2-9][0-9]* | cut -f1
So my second and third isfields are something like this
Ben 434
Me 12
you 56
So, I thought that the logic should be to cut the second and third linefield then grep numbernumbers that are bigger than 20 and then cut the first field and that. That should give me the name thatthat is on the same line with number that is bigger than 20, but it givegives me this output:
Ben
Me
you
instead of
Ben
you
which is what I want, how can I fix this command?