The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 11-28-2005
vgersh99's Avatar
vgersh99 vgersh99 is online now
Moderator
 

Join Date: Feb 2005
Location: Boston, MA
Posts: 2,999
well.... they BOTH work just fine under Sun's 'nawk'.

Quote:
Originally Posted by Gerry405
I am trying to find all occurances of text within a certain column (col 13) that start with the character V
Based on the definition above:
Code:
nawk '$13 ~ /^V.*/' text.file
Reply With Quote