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 下通过管道运算符传递哪些结果?
例如:假设我想通过管道传输 to 的所有输出foo,bar但第一个结果除外。
foo
bar
使用其他可用工具过滤两个命令之间的流。对于您的具体示例,请使用tail:
tail
cmd1 | tail -n +2 | cmd2
您可能会发现有价值的其他命令是head、grep和sed。
head
grep
sed