无法在没有 tee 的情况下在 Zsh 中使用多个输出
我在 .zshrc 中有以下内容
setopt multios
我正在尝试在 Zsh 中启用上述选项的情况下执行以下操作
ls -1 | tee file.txt | less
我运行以下命令失败
ls -1 | file.txt | less
,并且也运行以下命令
ls -1, file.txt, less
如何在没有命令 tee 的情况下在 Zsh 中使用多个输出?
I have the following in .zshrc
setopt multios
I am trying to do the following with the above option enabled in Zsh
ls -1 | tee file.txt | less
I run the following command unsuccessfully
ls -1 | file.txt | less
and the following too
ls -1, file.txt, less
How can you use multiple outputs in Zsh without the command tee?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第二个语法错误,应该是
That second one is the wrong syntax, it should be