Home > Net >  How can I shift the last N lines of a file?
How can I shift the last N lines of a file?

Time:09-26

I've a simple text file, named samples.log. In this file I've several lines. Suppose I have a total of 10 lines. My purpose is to replace the first 5 lines of the file with the last file lines of the same file. For example:

line 1
line 2
line 3
line 4
line 5
line 6
line 7
line 8
line 9
line 10

Become:

line 6
line 7
line 8
line 9
line 10

In other words, I simply want to delete the first 5 lines of the file and then I want to shift up the last 5. I'm working on Linux. What is the most simple way to do this? Is there a command? I'm working on a C program, but I think that is better to execute the linux command inside the program, instead of doing this operation in C, that I think would be quite difficult.

CodePudding user response:

Simply

  tail -n  6 samples.log

will do the job. tail -n NUM file will print the file starting with line NUM

CodePudding user response:

You can use this command:

tail -n $(($(cat samples.log | wc -l) - 5)) samples.log

You calculate the total amount of lines:

cat samples.log | wc -l

From that, you subtract 5:

$((x - 5))

And you use that last number of lines:

tail -n x samples.log
  • Related