Quote:
Originally Posted by simha77777
vgersh99,
Pardon my ignorance -
Just a little clarification needed here.
numList and numberList mismatch is a typo or it needs to be that way?
|
no, it's not a typo - it can be anything
Quote:
Originally Posted by simha77777
Also how do I check for a particular coulmn in the myFile (for example the 14th coulmn). The delimiter is tab in myFile.
Thanks for your time.
|
if it's the 14-th column in the myFile, then change this:
Code:
$1 in numList {print $1}
to this:
Code:
$14 in numList {print $14}