Mar 6, 2001 #1 applebala Programmer Mar 6, 2001 8 US I am a new user to awk I am trying to print all fields other than the first field in a variable length record. How do we do that ?
I am a new user to awk I am trying to print all fields other than the first field in a variable length record. How do we do that ?
Mar 6, 2001 1 #2 flogrr Programmer May 4, 2000 142 US applebala- awk '{$1="";print}' infile > outfile This should do it. flogrr flogr@yahoo.com Upvote 0 Downvote