获取与特定模式匹配的前n行(使用Linux命令)

biz*_*nez 4 linux grep

我有一个巨大的文件,我想找到一个术语模型.我想将包含单词model的前5行管道传输到另一个文件.如何使用Linux命令执行此操作?

scr*_*gar 16

man grep 提到那个

 -m NUM, --max-count=NUM
          Stop reading a file after NUM matching lines.  If the  input  is
          standard  input  from a regular file, and NUM matching lines are
          output, grep ensures that the standard input  is  positioned  to
          just  after the last matching line before exiting, regardless of
          the presence of trailing context lines.  This enables a  calling
          process  to resume a search. 
Run Code Online (Sandbox Code Playgroud)

所以可以使用

grep model old_file_name.txt -m 5 > new_file_name.txt
Run Code Online (Sandbox Code Playgroud)

不需要管道.grep支持几乎所有你需要的东西.


Gav*_*n H 7

grep model [file] | head -n 5 > [newfile]
Run Code Online (Sandbox Code Playgroud)