In bash, I usually do grep -f <(command) ...
(I pick grep just for example) to mimic a file input.
What is the equivalent in fish shell? I cannot find it in the documentation.
The <()
and >()
constructs are known as "process substitution". I don't use fish
, but according to its documentation, it doesn't directly support this:
Subshells, command substitution and process substitution are strongly related. fish only supports command substitution, the others can be achieved either using a block or the psub shellscript function.
Indeed, psub
seems to be what you want:
## bash
$ seq 10 | grep -f <(seq 4 5)
4
5
fish
~> seq 10 | grep -f (seq 4 5 | psub)
4
5
>()
output process substitution. – glenn jackman Sep 09 '20 at 15:45fish
'spsub
uses a temporary file, so it's closer tozsh
's=(...)
form of process substitution than<(...)
. It has apsub --fifo
, but is severely broken and cannot really be fixed (and still waits for the psub'ed command to finish for the(...)
to expand which means it's still really not an IPC mechanism like ksh/bash/zsh's<(...)
). – Stéphane Chazelas Sep 09 '20 at 16:01command | grep -f - ...
in any shell. – Stéphane Chazelas Sep 09 '20 at 16:02diff -u <(sort file1) <(sort file2)
– Colin D Bennett Dec 14 '20 at 23:24