我正在尝试从文本文件中删除前两行和后四行。如何使用Bash做到这一点?
您可以组合尾巴和头部:
$ tail -n +3 file.txt | head -n -4 > file.txt.new && mv file.txt.new file.txt