In bash if I type a command foo bar <(qux)
it will launch the foo program and its parameters will be bar
and /dev/fd/63
(or something like that).
If I type a command foo "bar <(qux)"
it will launch the foo program and its parameter will be bar <(qux)
.
How can I lauch foo with a single parameter bar /dev/fd/63
?