我试图删除一个文件的前两行,只是不打印到另一个文件.我不是在寻找一些奇特的东西.这是我(awk)尝试awk:
awk '{ (NR > 2) {print} }' myfile
这会抛出以下错误:
awk: { NR > 2 {print} } awk: ^ Syntax error
例:
‘myfile’的内容:
blah blahsdfsj 1 2 3 4
我想要的结果是:
1 2 3 4
使用尾巴
原文链接:https://www.f2er.com/bash/386862.htmltail -n+3 file
从手册页:
-n,--lines=K output the last K lines,instead of the last 10; or use -n +K to output lines starting with the Kth