执行shell脚本的几种方法

确切地说,在Linux下,可执行文件不应该有扩展名,而非可执行文件可以有。比如.gz压缩文件,有扩展名是合理的。

 

 

 

shell脚本不应该设置扩展名,要抛弃windows的习惯。除了在一些特殊情况下,可以为任何文件名。我倾向于不设扩展名,这样用的时候更象一个命令,如hello,而不必多个尾巴,如hello.sh。特殊情况就看什么软件来用这个script,比如在Solaris系统中的/etc/rcx.d目录下的script,带.sh扩展名和不带.sh扩展名调用时是有区别的。

Don't use extensions for your scripts. Executables shouldn't have extensions. Just like you run 'ls' instead of 'ls.elf', you should run 'myscript' or './myscript', not 'myscript.sh'. In any case, putting 'sh' extensions on *bash* scripts (which are *not* sh scripts) is retarded.

当我们给予shell脚本执行的权限后,就可以测试程序了,假设shell脚本文件为hello

放在/root目录下。下面介绍几种在终端执行shell脚本的方法:
1.切换到shell脚本所在的目录,执行:

[root@localhost home]# cd /root/
[root@localhost ~]# ./hello
hello guys!
welcome to my Blog:linuxboy.org!

2.以绝对路径的方式执行:

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

3.直接用bash或sh执行:

[root@localhost ~]# bash hello
hello guys!
welcome to my Blog:linuxboy.org!
[root@localhost ~]# sh hello
hello guys!
welcome to my Blog:linuxboy.org!

注意:用以上三种方法执行shell脚本,现行的shell会开启一个子shell环境,去执行shell脚本
也可以让shell脚本在现行的shell中执行:
4.现行的shell中执行

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

http://dev.firnow.com/course/6_system/linux/Linuxjs/20110124/553010.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值