当我运行某些 bash 命令时,它会返回2
..n
行文本(n
每次都不同,可能包含空行)。
如何过滤输出以显示跳过第 1 行和第 2 行的结果?
例如
$ my_command
file1
file2
file3
file3
$ my_command | some_filter
file3
file4
答案1
$ my_command | tail -n +3
在这种情况下,+3
意思是“从文件的第三行开始输出”。
当我运行某些 bash 命令时,它会返回2
..n
行文本(n
每次都不同,可能包含空行)。
如何过滤输出以显示跳过第 1 行和第 2 行的结果?
例如
$ my_command
file1
file2
file3
file3
$ my_command | some_filter
file3
file4
$ my_command | tail -n +3
在这种情况下,+3
意思是“从文件的第三行开始输出”。