Ubuntu

如何在沒有兩行的情況下顯示結果

  • September 28, 2010

當我執行一些 bash 命令時,它返回2..n文本行(n每次都不同,可能包含空行)。

如何過濾輸出以顯示跳過第 1 行和第 2 行的結果?

例如

$ my_command

file1
file2
file3
file3

$ my_command | some_filter

file3
file4
$ my_command | tail -n +3

在這種情況下,+3意思是“在文件的第三行開始輸出”。

引用自:https://serverfault.com/questions/185584