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>
|
|
|
Take a look at tail, more precisecly, it's --lines=+N switch:
|
|||
|
|
The most obvious way is
If you can not get
|
|||
|
|
|
If instead of a line number you need to start listing at the line containing a given
The -1000 will continuously list text for up to 1000 lines; you can change this as needed.
The |
||||
|
|
|
tail +250 |
|||
|