However, how do you work around the lack of <() and >()? E.g. if I want to do the equivalent of
$ diff <(xzcat foo.xz) <(xzcat bar.xz)
EDIT: nevermind, I see the fish version is
$ diff (xzcat foo.xz|psub) (xzcat bar.xz|psub)
However, how do you work around the lack of <() and >()? E.g. if I want to do the equivalent of
?EDIT: nevermind, I see the fish version is
which actually does the mkfifo dance for you :-)