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.
Penz 说这个问题可以通过线程中的 Multios 和 coproc 特性来解决。
但是,我不确定解决方案。
我知道你可以使用 multios 作为
ls -1 > file | less
但我从来没有使用过你有两个输入。
如何使用这些特性在 Zsh 中创建管道循环?
我无法理解这些问题。
您是否尝试执行以下操作:
(ls -1 && file) | less
其中 && 用于单行上的多个命令。
或者您是否尝试执行以下操作:
ls -1 | tee file | less
tee 将输出放入文件和标准输出的位置。