linux脚本解释,shell脚本⾸⾏的解释和⽤法#!/bin/bash的解释和⽤法
#!/bin/bash是指此脚本使⽤/bin/bash来解释执⾏。
其中,#!是⼀个特殊的表⽰符,其后,跟着解释此脚本的shell路径。
bash只是shell的⼀种,还有很多其它shell,如:sh,csh,ksh,tcsh,...
我们可以通过以下⼀个⽰例来进⾏实验,了解#!/bin/bash的使⽤。
1)#!/bin/bash只能放在第⼀⾏,如果后⾯还有#!,那么只能看成是注释。
这⾥有三个脚本(脚本都要使⽤”chmod +x  scriptname“命令来获得可执⾏权限):
tbash1.sh:
#!/bin/sh
source abc
echo "hello abc"
tbash2.sh:
#!/bin/bash
source abc
echo "hello abc"
tbash3.sh:
source abc
echo "hello abc"
三个脚本执⾏的结果:
[nsvc@localhost other]$ ./tbash1.sh
./tbash1.sh: line 2: abc: No such file or directory
注:当source命令执⾏有问题时,sh不再往下⾯执⾏。
[nsvc@localhost other]$ ./tbash2.sh
./tbash2.sh: line 2: abc: No such file or directory
hello abc
注:当source命令执⾏有问题时,bash继续执⾏下⾯命令。
[nsvc@localhost other]$ ./tbash3.sh
./tbash3.sh: line 1: abc: No such file or directory
hello abc
注:⾃⾝登录系统所在的shell是bash。所以,当source命令执⾏有问题时,bash继续执⾏下⾯命令。
如果将tbash1.sh改成:
echo "abc"
#!/bin/sh
source abc
echo "hello abc"
那么,执⾏结果是:
[nsvc@localhost other]$ ./tbash1.sh
abc
./tbash1.sh: line 3: abc: No such file or directory
hello abc
也就是说,脚本忽略了第⼆⾏“#!/bin/sh",直接使⽤当前所在的shell(也就是bash)来解释脚本。
当把tbash1.sh改成:
#!/bin/sh
#!/bin/bash
source abc
echo "hello abc"
执⾏结果为:
[nsvc@localhost other]$ ./tbash1.sh
./tbash1.sh: line 3: abc: No such file or directory
当执⾏完source命令时,并没有往下执⾏。说明,#!/bin/sh这⼀⾏起到作⽤了,但#!/bin/bash并没有起作⽤。在脚本中,不在第⼀⾏的#!/bin/bash,只是⼀个注释。shell代码
2)#!后⾯的路径⼀定要正确,不正确会报错。
假如,我们把tbash1.sh中第⼀⾏的#!后⾯加了⼀个不存在的路径”/home/sh“:
#!/home/sh
source abc
echo "hello abc"
执⾏结果为:
[nsvc@localhost other]$ ./tbash1.sh
-bash: ./tbash1.sh: /home/sh: bad interpreter: No such file or directory
系统会提⽰/home/sh的路径不存在。
3)如果⼀个脚本在第⼀⾏没有加上#!+shell路径这⼀⾏,那么,脚本会默认当前⽤户登录的shell,为脚本解释器。
在1)中,脚本tbash3.sh的执⾏结果,就是⽤当前⾃⼰登录的shell(bash)解释后的结果。我们通常所⽤的shell都是bash,如果哪天登录到sh,再使⽤以上类型的脚本,就会有问题。以下是⾃⼰登录到sh下,执⾏tbash3.sh的结果:
-sh-3.2$ ./tbash3.sh
./tbash3.sh: line 1: abc: 没有那个⽂件或⽬录
与1)中的执⾏结果是不⼀样的。
因此,⼤家应该养成脚本⾸⾏加上#!+shell路径的习惯。
4)/bin/sh相当于/bin/bash --posix
我们将脚本tbash1.sh改为:
#!/bin/bash --posix
source abc
echo "hello abc"
执⾏结果:
[nsvc@localhost other]$ ./tbash1.sh
./tbash1.sh: line 2: abc: No such file or directory
与tbash1.sh原脚本执⾏的结果⼀样。
我们还可以以tbash3.sh为⽰例。
⽤以下命令来执⾏该脚本:
[nsvc@localhost other]$ bash tbash3.sh
tbash3.sh: line 1: abc: No such file or directory
hello abc
[nsvc@localhost other]$ sh tbash3.sh
tbash3.sh: line 1: abc: No such file or directory
[nsvc@localhost other]$ bash --posix tbash3.sh
tbash3.sh: line 1: abc: No such file or directory
"bash tbash3.sh"表⽰使⽤bash来作为脚本解释器来执⾏tbash3.sh。同样,也可以使⽤如”sh 脚本名“这样的命令,来⽤sh作为脚本解释器。
从结果可以看出,/bin/bash --posix与/bin/sh的执⾏结果相同。总结起来,sh跟bash的区别,实际上是bash有没开启posix模式的区别。遵守posix规范,可能包括,”当某⾏代码出错时,不继续往下执⾏。“
最后加上⼀点说明,每个脚本开头都使⽤"#!",#!实际上是⼀个2字节魔法数字,这是指定⼀个⽂件类型的特殊标记,在这种情况下,指的就是⼀个可执⾏的脚本。在#!之后,接⼀个路径名,这个路径名指定了⼀个解释脚本命令的程序,这个程序可以是shell,程序语⾔或者任意⼀个通⽤程序。
总结起来,要规规举举地按照秩序⾏。
个⼈总结:
#!/bin/bash是指此脚本使⽤/bin/bash来解释执⾏。
#!是⼀个特殊的表⽰符,其后,跟着解释此脚本的shell路径。
#!后⾯的路径⼀定要正确,不正确会报错。
#!/bin/bash只能放在第⼀⾏,如果后⾯还有#!,那么只能看成是注释。
#!/bin/sh相当于#!/bin/bash --posix
sh跟bash的区别,实际上是bash有没开启posix模式的区别。遵守posix规范,可能包括,”当某⾏代码出错时,不继续往下执⾏。“
现在sh变成了bash的软链接,实际效果已经⼀样了! 以上指的是真实的sh环境!
#!/bin/sh中当⼀条命令执⾏有问题时,sh不再往下⾯执⾏。
#!/bin/bash中当⼀条命令执⾏有问题时,sh继续往下⾯执⾏。
当没有#!/bin/sh或者#!/bin/bash时,脚本会默认当前⽤户登录的shell,为脚本解释器。⼀般是bash
每个脚本开头都使⽤"#!",#!实际上是⼀个2字节魔法数字,这是指定⼀个⽂件类型的特殊标记,在这种情况下,指的就是⼀个可执⾏的脚本。在#!之后,接⼀个路径名,这个路径名指定了⼀个解释脚本命令的程序,这个程序可以是shell,程序语⾔或者任意⼀个通⽤程序。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。