标签: shell ubuntu
如何将#2中的行写入名为output.txt的文件?
答案 0 :(得分:0)
使用tail命令:
tail
tail +2 input.txt > output.txt
或
sed '1d' input.txt > output.txt