Linux命令将log文件中关键字keyword前10行、后5行输出到 test.txt文件

[

Linux命令如下:

Linux命令将log文件中关键字keyword前10行、后5行输出到 test.txt文件中

sed -A 10 -B 5 "keyword" log >>test.txt

Linux命令解释:

Sed:指发送这个文件的内容到另一个文件的意思

-A:是指后几行的意思

-B:则是前几行的意思

>>:这个是制定将那个文件的内容发送到那个文件去

]
转载请保留页面地址:https://www.breakyizhan.com/linux/4692.html

posted on 2020-07-07 21:08  MrAit  阅读(724)  评论(0编辑  收藏  举报

导航