I have a very long file which I want to print but skipping the first 1e6 lines for example. I look into the cat man page but I did not see nay option to do this. I am looking for a command to do this or a simple bash program. I know how to do it using a program in C but I want to do it using the common commands. Any way to do it? Thanks a lot in advance..
|
you need tail.
if you really need to SKIP a particular number of lines, use
That is, if you want to skip N lines, you start printing line N+1, If you want to just see the last so many lines, omit the "+":
|
|||||||||||||||||
|
|
If you have GNU tail available on your system, you can do the following:
It's the |
|||||
|
|
This shell script works fine for me:
Used with this sample file (file.txt):
The command (it will extract from second to fourth line in the file):
Output of this command:
Of course, you can improve it, for example by testing that all argument values are the expected :-) |
|||||
|
|
Just to propose a Example:
|
|||
|
|
|
You can do this using the head and tail commands:
where num is 1e6 + the number of lines you want to print. |
|||||||
|
|
I needed to do the same and found this thread. I tried "tail -n +, but it just printed everything. The more +lines worked nicely on the prompt, but it turned out it behaved totally different when run in headless mode (cronjob). I finally wrote this myself:
|
|||
|
|
|
If you want to see first 10 line you can use sed as below:
or if you want to see lines from 20 to 30 you can use:
|
||||
|
|