在bash中,管道就像子壳一样。为什么?

时间:2019-05-02 07:08:09

标签: linux bash shell namespaces pipe

案例1

x=0; x=1; echo "x=$x"

将打印x=1

案例2

x=0; x=1 | echo ; echo "x=$x"

将打印x=0

为什么管道后面的代码像子外壳一样工作?

0 个答案:

没有答案