Jun 4, 2001 #1 Guest_imported New member Joined Jan 1, 1970 Messages 0 thanks please help me out?? hiren
Jun 4, 2001 #2 sramki Programmer Joined May 8, 2001 Messages 27 Location IN CUT is a command used to cut a field from a file and display it on to the screen . create a file $ cat > f1 name age group class sec let these some of the fields in that file f1 . suppose u wanna cut the third field $ cut -d " " -f3 this will give a o/p of "group " here d stands for the delimiter between the fields . hope this is helpful with regards ramki Upvote 0 Downvote
CUT is a command used to cut a field from a file and display it on to the screen . create a file $ cat > f1 name age group class sec let these some of the fields in that file f1 . suppose u wanna cut the third field $ cut -d " " -f3 this will give a o/p of "group " here d stands for the delimiter between the fields . hope this is helpful with regards ramki
Jun 4, 2001 Thread starter #3 Guest_imported New member Joined Jan 1, 1970 Messages 0 thanks a lot it is really working... thanks again hiren delwadia Upvote 0 Downvote