Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将除第一行之外的程序的所有标准输出重定向到文件中。
是否有一个通用的 unix 程序可以从标准输入中删除行并将其余的输出到标准输出?
其他人已经提到了“尾巴”。sed 也可以:
sed 1d
和 Awk 一样:
awk 'NR > 1'
尾 -n +2 -f -
sed -e 1d <输入>输出