确切地说,在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