|
deleteing
Dear Experts ,
I have 15 files and each files contains the data as mentioned below
fileA
name company salary
job location nationality
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
sports fottbal basket ball
total=888
I need a script which can remove the first two lines and the last two lines of each files .means i need a for loop for so that i cann process the 15 files.
the data which should remain is as mentioned below.
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
12121 234234 13123
thanks
|