执行shell脚本的几种方法与区别
注意:如果涉及到脚本之间的调用一定要用 . 来执行shell脚本。
[[email protected] ~]# cat a.sh
#!/bin/bash
Tang=Freddy
[[email protected] ~]# sh a.sh
[[email protected] ~]# echo $Tang
[[email protected] ~]# . a.sh
[[email protected] ~]# echo $Tang
Freddy
[[email protected] ~]#
时间: 2024-10-10 20:59:10