Unix cat starting from line
Take a look at tail, more precisecly, it's --lines=+N switch:
tail --lines=+100 <file>
The most obvious way is tail
. The syntax might be slightly different depending on what OS you are using:
tail -n +70000
If you can not get tail
to work, you could use sed
, but it might end up slower:
sed -pe '1,69999d'
You can use NR parameter with the awk command:
cat <file> | awk '{if (NR>=7000) print}'