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 -->
  #6 (permalink)  
Old 03-03-2008
monicasgupta monicasgupta is offline
Registered User
  
 

Join Date: Mar 2008
Posts: 6
Thanks Perderabo, it worked really fine, i really appreciate if you can be more helpful to me

once the file r created i need to do following two things.

1) Following file are created with data.

100whatever.txt
100 ABC A123
100 BVC D234
100 BNC N324

100whatever.txt
200 CBC A122
200 AVC D294
200 HNC N324

100whatever.txt
300 GBC A173
300 FVC D234
300 DNC N344

Now I want to remove first record from all the file, should look like
100whatever.txt
ABC A123
BVC D234
BNC N324

100whatever.txt
CBC A122
AVC D294
HNC N324

100whatever.txt
GBC A173
FVC D234
DNC N344

2) Zip all the files into one file as WHATEVER.zip

THanks
MOnica