可以使用tail,看help:
Usage: tail [OPTION]... [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
因此,-n +K表示从第K行开始打印。
假设要跳过头N-1行,打印剩余部分,直接:
tail -n +N
可以使用tail,看help:
Usage: tail [OPTION]... [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
因此,-n +K表示从第K行开始打印。
假设要跳过头N-1行,打印剩余部分,直接:
tail -n +N
coreutils-8.20 好像不支持 tail -3 這種舊用法了,必須 -n
是-n +N,是我手抖了:-)