Same question as How can I send stdout to multiple commands? but for fish shell.
Asked
Active
Viewed 989 times
Same question as How can I send stdout to multiple commands? but for fish shell.
psub
command instead of the bash>(...)
syntax – glenn jackman Jul 01 '17 at 22:32cat file.txt | tee >(pbcopy) >(do_stuff) >(do_more_stuff) | grep errors
? – user699151 Jul 02 '17 at 04:56<(x)
with(x | psub)
but I have no idea how to replace>(x)
. Anyway why don't you post you comment as an answer? – user699151 Jul 03 '17 at 13:18>(x)
isn't implemented yet: https://github.com/fish-shell/fish-shell/issues/1786 – glenn jackman Jul 07 '17 at 12:52