标签: bash bash4
在bash中,如果我输入一个命令foo bar <(qux),它将启动foo程序,其参数将是bar和/dev/fd/63(或类似的东西)。
foo bar <(qux)
bar
/dev/fd/63
如果我输入命令foo "bar <(qux)",它将启动foo程序,其参数将为bar <(qux)。
foo "bar <(qux)"
bar <(qux)
我怎样才能使用单个参数bar /dev/fd/63?
bar /dev/fd/63
答案 0 :(得分:4)
只需改变一点引用:
foo "bar "<(qux)