shell脚本4种执⾏⽅式
Linux中shell脚本的执⾏通常有4种⽅式,分别为⼯作⽬录执⾏,绝对路径执⾏,sh执⾏,shell环境执⾏。
⾸先,看下我们的脚本内容
[tan@tan scripts]$ ll
total 4
-rw-rw-r--. 1 tan tan 68 May 8 23:18 test.sh
[tan@tan scripts]$ cat test.sh
#!/usr/bin/bash
/usr/bin/python <<-EOF
print "Hello Shell"
EOF
1、⼯作⽬录执⾏
⼯作⽬录执⾏,指的是执⾏脚本时,先进⼊到脚本所在的⽬录(此时,称为⼯作⽬录),然后使⽤ ./脚本⽅式执⾏
[tan@tan scripts]$ ./test.sh
-bash: ./test.sh: Permission denied
[tan@tan scripts]$ chmod 764 test.sh
shell脚本返回执行结果[tan@tan scripts]$ ./test.sh
Hello Shell
如图,报了权限错误,上⼀篇博⽂有提到,这⾥需要赋权,使⽤chmod 764 test.sh 赋权后就可以正常执⾏了
./的意思是说在当前的⼯作⽬录下执⾏hello.sh。如果不加上./,bash可能会响应到不到hello.sh的错误信息。因为⽬前的⼯作⽬录(/data/shell)可能不在执⾏程序默认的搜索路径之列,也就是说,不在环
境变量PASH的内容之中。查看PATH的内容可⽤ echo $PASH 命令。现在的/data/shell就不在环境变量PASH中的,所以必须加上./才可执⾏。
2、绝对路径执⾏
绝对路径中执⾏,指的是直接从根⽬录/到脚本⽬录的绝对路径
[tan@tan scripts]$ pwd
/home/tan/scripts
[tan@tan scripts]$ `pwd`/test.sh
Hello Shell
[tan@tan scripts]$ /home/tan/scripts/test.sh
Hello Shell
这⾥ `pwd` 指的是该命令执⾏结果,等同于 /home/tan/scripts
3、sh执⾏
sh执⾏,指的是⽤脚本对应的sh或bash来接着脚本执⾏
[tan@tan scripts]$ sh test.sh
Hello Shell
[tan@tan scripts]$ bash test.sh
Hello Shell
注意,若是以⽅法三的⽅式来执⾏,那么,可以不必事先设定shell的执⾏权限,甚⾄都不⽤写shell⽂件中的第⼀⾏(指定bash路径)。因为⽅法三是将hello.sh作为参数传给sh(bash)命令来执⾏的。这时不是hello.sh⾃⼰来执⾏,⽽是被⼈家调⽤执⾏,所以不要执⾏权限。那么不⽤指定bash路径⾃然也好理解了啊,呵呵……。
4、shell环境执⾏
shell环境执⾏,指的是在当前的shell环境中执⾏,可以使⽤ . 接脚本或 source 接脚本
[tan@tan scripts]$ . test.sh
Hello Shell
[tan@tan scripts]$ source test.sh
Hello Shell
总结
以上所述是⼩编给⼤家介绍的shell脚本4种执⾏⽅式,希望对⼤家有所帮助,如果⼤家有任何疑问请给我留⾔,⼩编会及时回复⼤家的。在此也⾮常感谢⼤家对⽹站的⽀持!
如果你觉得本⽂对你有帮助,欢迎转载,烦请注明出处,谢谢!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论