note:上例中$0返回的信息中包含路径名,如果只想得到脚本名称,可以借助basename,将脚本中第一句修改为:
echo "The script name is : \`basename \$0\` "
保存文件,执行 ./test would you like to do it
note:basename 用``向系统命令传递参数
可以在脚本中向系统命令传递参数
$ vi findfile #!/bin/sh find / -name $1保存,执行
$ ./findfile passwd 2.4.4 特定变量特定变量属于只读变量,反映脚本运行过程中的控制信息
特定的shell变量列表:
$# 传递到脚本的参数个数(常用)
$* 以一个单字符串的形式显示所有向脚本传递的参数,与位置变量 不同,此项参数可超过9个
$$ 脚本运行的当前进程id号(常用)
$! 后台运行的最后一个进程的进程id号
$@ 与$*相同,但是使用时加引号,并在引号中返回每个参数
$- 显示shell使用的当前变量,与set命令功能相同
$? 显示最后命令的退出状态,0表示正确,其他任何值表示错误(常用)
例:修改test脚本,追加特定变量信息:
#!/bin/sh echo "The full name is : $0 " echo "The script name is : `basename $0`" echo "The first parameter is :$1" echo "The second parameter is :$2" echo "The third parameter is :$3" echo "The fourth parameter is :$4" echo "The fifth parameter is :$5" echo "The sixth parameter is :$6" echo "The seventh parameter is :$7" echo "The eighth parameter is :$8" echo "The ninth parameter is :$9" echo "The number of arguments passed :$#" echo "Show all arguments :$*" echo "Show my process id :$$" echo "Show me the arguments in quotes :$@" echo "Did my script go with any errors :$?"最后的退出状态 $?
可以在任何脚本或者命令中返回此变量以获得返回信息,基于此信息,可以在脚本中做更进一步的研究,返回0为成功,1为失败
例1:
例2:
$ cp /etc/passwd /home/wuxh/mydir //<mydir不存在> $ echo $? 1建议将返回值设置为一个有意义的名字,增加脚本的可读性
修改例2
测试文件状态:
用法:test condition 或者 [ condition ]
文件状态列表
-d 目录
-s 文件长度大于0,非空
-f 正规文件
-w 文件可写
-L 符号文件
-u 文件有uid设置
-r 文件可读
-x 文件可执行
例:
$ ls -l hello $ [ -w hello ] $ echo $?使用逻辑操作符:
测试文件状态是否ok,可以借助逻辑操作符对多个文件状态进行比较
-a 逻辑与,操作符两边均为真,结果为真,否则为假
-o 逻辑或,操作符两边一边为真,结果为真,否则为假
! 逻辑否,条件为假,结果为真
例1:
$ [ -r myfile1 -a -w myfile2 ] $ echo $?例2:
$ [ -w myfile1 -o -x myfile2 ] $ echo $? 3.1.2 字符串测试字符串测试是错误捕获很重要的一部分,特别是用户输入或比较变量时尤为重要
格式:
test "string"
test string_operator "string"
test "string" string_operator "string"
[ string_operator string ]
[ string string_operator string ]
注:string_operator 的取值:
= 等于
!= 不等于
-z 空串
-n 非空串
例:测试变量string1是否等于string2
$ string1="hello" $ string2="Hello" $ [ "$string1" = "$string2" ] $ echo $?note:在进行字符串比较时,一定要加引号;等号前后要加空格。
3.1.3 数值测试格式:"number" number_operator "number"
或者:[ "number" number_operator "number" ]
number_operator 的取值范围:
-eq 数值相等
-gt 第一个数大于第二个数
-ne 数值不相等
-lt 第一个数小于第二个数
-le 第一个数小于等于第二个数
-ge 第一个数大于等于第二个数
例1:
[root@chenshifengdeLinuxServer ~]# NUM1=130 [root@chenshifengdeLinuxServer ~]# [ "$NUM1" -eq "130" ] [root@chenshifengdeLinuxServer ~]# echo $? 0例2:
[root@chenshifengdeLinuxServer ~]# [ "990" -le "996" -a "123" -gt "33" ] [root@chenshifengdeLinuxServer ~]# echo $? 0 3.2 expr 语句-字符串测试和数值测试