tail command..

I was wondering how can I do this

I have file myfile.txt

wc -l is: 5 000 000

I have to remove first 1 000 000 lines from header..

I tryed with tail -4000000 myfile.txt>newfile.txt

but it does not work...

any help??

sed -e "1,100000d" file > file.new

:wink: thanks..vino..I needed first 1000k lines..so I added one "0" but thanks script did a job...:slight_smile:

Thanks..