The UNIX and Linux Forums  

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



Thread: reading file
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #10 (permalink)  
Old 12-10-2004
bhargav's Avatar
bhargav bhargav is offline
Registered User
 

Join Date: Sep 2004
Location: USA
Posts: 511
generic code this time ....


awk -F":" '{
for (i=1; i<= NF; i++)
{
if (i%2 == 0) { printf("%s\t", $i) }
if ( i == 1 ) { printf ("\n") }
}
}' testfile
Reply With Quote