command1 |之间有区别吗? command2和command2<(command1)? 例如,git diff |更多vs更多<(git diff) 我的理解是,它们都使用command2的stdout并将其传递给command1的stdin.
主要区别在于,<(...),称为“进程替换”,由
shell转换为文件名,该文件名作为常规参数传递给命令;它不会向命令的标准输入发送任何内容.这意味着它不能直接用于不带文件名参数的tr之类的命令:
原文链接:https://www.f2er.com/bash/384786.html$tr a-z A-Z <(echo hello) usage: tr [-Ccsu] string1 string2 tr [-Ccu] -d string1 tr [-Ccu] -s string1 tr [-Ccu] -ds string1 string2
但是,你总是可以把另一个<在<(...)之前将其转换为输入重定向:
$tr a-z A-Z < <(echo hello) HELLO
并且因为它生成了一个文件名,所以您可以使用带有多个文件参数的命令进行进程替换:
$diff -u <(echo $'foo\nbar\nbaz') <(echo $'foo\nbaz\nzoo') --- /dev/fd/63 2016-07-15 14:48:52.000000000 -0400 +++ /dev/fd/62 2016-07-15 14:48:52.000000000 -0400 @@ -1,3 +1,3 @@ foo -bar baz +zoo
另一个显着的区别是管道创建的子壳在父环境中不会产生副作用:
$echo hello | read x $echo $x # nothing - x is not set
但是对于进程替换,只有括号内的进程在子shell中;周围的命令仍然可能有副作用:
$read x < <(echo hello) $echo $x hello
值得一提的是,您也可以使用>(…)写入一个流程,尽管这种情况较少有用:
$echo hello > >(cat) hello