The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #6 (permalink)  
Old 02-06-2008
vgersh99's Avatar
vgersh99 vgersh99 is offline Forum Staff  
Moderator
  
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 5,122
Quote:
Originally Posted by simha77777 View Post
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 View Post
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}