Question

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?

Was it helpful?

Solution

That second one is the wrong syntax, it should be

ls -1 > file.txt | less
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top