Skip to Content

linux执行shell脚本的方式及一些区别

假设shell脚本文件为hello.sh
放在/root目录下。下面介绍几种在终端执行shell脚本的方法:

[root@localhost home]# cd /root/
[root@localhost ~]#vim hello.sh
#! /bin/bash
cd /tmp
echo "hello guys!"
echo "welcome to my Blog:linuxboy.org!"

1.切换到shell脚本所在的目录,执行:
[root@localhost ~]# ./hello.sh
-bash: ./ hello.sh: 权限不够

2.以绝对路径的方式执行:
[root@localhost ~]# /root/Desktop/hello.sh
-bash: /root/Desktop/ hello.sh: 权限不够

3.直接用bash或sh执行:
[root@localhost ~]# bash hello.sh
hello guys!
welcome to my Blog:linuxboy.org!
[root@localhost ~]# pwd
/root

[root@localhost ~]# sh hello.sh
hello guys!
welcome to my Blog:linuxboy.org!
[root@localhost ~]# pwd
/root
注意:用以上三种方法执行shell脚本,现行的shell会开启一个子shell环境,去执行shell脚本,前两种必须要有执行权限才能够执行

也可以让shell脚本在现行的shell中执行:
4.现行的shell中执行
[root@localhost ~]# . hello.sh
hello guys!
welcome to my Blog:linuxboy.org!
[root@localhost tmp]# pwd
/tmp


[root@localhost ~]# source hello.sh
hello guys!
welcome to my Blog:linuxboy.org!
[root@localhost tmp]# pwd
/tmp

对于第4种不会创建子进程,而是在父进程中直接执行
上面的差异是因为子进程不能改变父进程的执行环境,所以CD(内建命令,只有内建命令才可以改变shell 的执行环境)没有成功,但是第4种没有子进程,所以CD成功
更多精彩:
河南最好的白癜风医院http://www.huazhugw.com/
白癜风病因http://www.huazhugw.com/bfyy/
白癜风症状http://www.huazhugw.com/zz/
白癜风治疗http://www.huazhugw.com/zl/
白癜风诊断http://www.huazhugw.com/zd/
白癜风危害http://www.huazhugw.com/20/
白癜风预防http://www.huazhugw.com/30/
白癜风遗传http://www.huazhugw.com/10/
白癜风常识http://www.huazhugw.com/40/
儿童白癜风http://www.huazhugw.com/50/
青年白癜风http://www.huazhugw.com/60/
成人白癜风http://www.huazhugw.com/70/
女性白癜风http://www.huazhugw.com/80/
中药疗法http://www.huazhugw.com/tslf/
康复病例http://www.huazhugw.com/kfbl/
医患问答http://www.huazhugw.com/zjwd/

发表新评论

  • 你可以在文本中使用BBCode标记语言。 URL会自动被转为链接。

更多关於格式化选项的信息

CAPTCHA
请验证您是否是机器人。
Image CAPTCHA
Enter the characters shown in the image.