What is the best way to output from a file starting from a specific line (big number like 70000). Something like:
cat --line=70000 <file>
|
feedback
|
|
Take a look at tail, more precisecly, it's --lines=+N switch:
| |||
feedback
|
|
The most obvious way is
If you can not get
| |||
|
feedback
|
|
tail +250 | |||
feedback
|