Ubuntu
如何在沒有兩行的情況下顯示結果
當我執行一些 bash 命令時,它返回
2
..n
文本行(n
每次都不同,可能包含空行)。如何過濾輸出以顯示跳過第 1 行和第 2 行的結果?
例如
$ my_command file1 file2 file3 file3 $ my_command | some_filter file3 file4
$ my_command | tail -n +3
在這種情況下,
+3
意思是“在文件的第三行開始輸出”。