假设ls -t返回:
ls -t
1 2 3 4 5 6
如何跳过前 3 个结果?所以结果只有:
4 5 6
我知道我可以运行ls -t | head -3,但这只会占用前 3 行,但我需要跳过前 3 行。
ls -t | head -3
1 2 3
command-line ls text-processing
command-line ×1
ls ×1
text-processing ×1