执行shell脚本有以下几种方式
[root@pythontab.com tmp]# cd /tmp [root@pythontab.com tmp]# ./pythontab.sh
[root@pythontab.com tmp]# /tmp/pythontab.sh
[root@pythontab.com /]# bash /tmp/pythontab.sh
第一种和第二种没有什么区别,两种方式都需要提前赋予脚本以执行权限。
第三种是把脚本当做bash的调用来处理,所以,脚本不需要有执行权限就可以执行。
前三种方式都是在当前shell中打开一个子shell来执行脚本内容,当脚本内容结束,则子shell关闭,回到父shell中。
第四种是使脚本内容在当前shell里执行,而不是单独开子shell执行。
开子shell与不开子shell的区别就在于,环境变量的继承关系,如在子shell中设置的当前变量,不做特殊通道处理的话,父shell是不可见的。
而在当前shell中执行的话,则所有设置的环境变量都是直接生效可用的。
[root@pythontab.com /]# cat /tmp/pythontab.sh top
├─sshd─┬─sshd───bash───bash───top │ └─sshd───bash───pstree
├─sshd─┬─sshd───bash───top │ └─sshd───bash───pstree
建立两个脚本,father.sh和subshell.sh。其中father.sh调用subshell.sh
[root@pythontab.com /]# cat /tmp/father.sh v_ceshi='father' #-------父shell中定义变量 echo "以子shell方式调用脚本" /tmp/subshell.sh echo "输出v_ceshi值为${v_ceshi}" echo "" echo "在当前shell中执行脚本" . /tmp/subshell.sh echo "输出v_ceshi值为${v_ceshi}"
[root@pythontab.com /]#
[root@pythontab.com /]# cat /tmp/subshell.sh v_ceshi=son
[root@pythontab.com /]#
执行结果为
[root@pythontab.com /]# /tmp/father.sh 以子shell方式调用脚本 输出v_ceshi值为father 在当前shell中执行脚本 输出v_ceshi值为son
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
长按识别二维码并关注微信
更方便到期提醒、手机管理