How to delete the last few lines in linux

藏色散人
Release: 2021-12-14 11:25:00
Original
7527 people have browsed it

How to delete the last few lines in Linux: 1. Use the "sed $(($ A-3 1)),${A}d a.txt" command to delete the last few lines of the file; 2. Use " sed '2,$d' -i aa.txt" command deletes all lines from line 2 to the end of the file.

How to delete the last few lines in linux

The operating environment of this article: linux5.9.8 system, Dell G3 computer.

linux How to delete the last few lines?

linux Delete the last few lines of the file:

1.

[root@server ~]# cat aa.txt
aaaa
bbbb
cccc
dddd
eeee
Copy after login
[root@server ~]# A=$(sed -n '$=' a.txt)
[root@server ~]# sed $(($ A-3+1)),${A}d a.txt
Copy after login
[root@server ~]# cat aa.txt
aaaa
Copy after login

Or use the above two commands. The last 3 lines are deleted.

If you delete the countdown 300, just change 3 to 300.

2.

-i is to modify the original file. If no modification is needed, i is not needed.

Among them, sed '2,$d' -i aa.txt

This command is to delete all lines from line 2 (including line 2) to the end of the file.

Note:

Command one operates on the original file, and the result will be transferred to a newly generated file or printed to the screen;

Command two operates on the original file directly, and the result will be on the original file. The file was changed and the command results were produced.

Recommended learning: "linux video tutorial"

The above is the detailed content of How to delete the last few lines in linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template