标签: linux bash shell namespaces pipe
案例1
x=0; x=1; echo "x=$x"
将打印x=1
x=1
案例2
x=0; x=1 | echo ; echo "x=$x"
将打印x=0
x=0
为什么管道后面的代码像子外壳一样工作?