执行Linux脚本有多种方式:sh 、 bash 、 . 、 source,区别如下
新建一个 test.sh 脚本,内容为:A=1 ;
修改其可执行权限:chmod +x test.sh ;
运行 sh test.sh 后,echo $A ,显示为空,因为调用子shell执行 A=1 并未传回给当前shell ;
运行 ./test.sh 后,也是一样的效果 ;
运行 source test.sh 或者 . test.sh,然后 echo $A ,则会显示 1 ,说明 A=1 的变量在当前shell中 ;