what diffrent about echo " " and echo ' ' ?

echo ” ” 是弱引用就是当里边是一个”$变量”的时候就会显示变量里边的内容
eg: echo “$SHELL”
but if echo ‘$SHELL’
the result is $SHELL not the value from SHELL

猜你喜欢

转载自blog.csdn.net/qq_37699336/article/details/82261903