The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 02-10-2009
timontt timontt is offline
Registered User
  
 

Join Date: Oct 2007
Posts: 44
if just need to get col after 5th comma, try below

cat csvfile | awk -F, '{print $6}'

Thanks!