特殊变量列表

变量 含义
$0 当前脚本的文件名
$n 传递给脚本或函数的参数。n 是一个数字,表示第几个参数。例如,第一个参数是$1,第二个参数是$2。
$# 传递给脚本或函数的参数个数。
$* 传递给脚本或函数的所有参数。
$@ 传递给脚本或函数的所有参数。被双引号(” “)包含时,与 $* 稍有不同,下面将会讲到。
$? 上个命令的退出状态,或函数的返回值。
$$ 当前Shell进程ID。对于 Shell 脚本,就是这些脚本所在的进程ID。

命令行参数

运行脚本时传递给脚本的参数称为命令行参数。命令行参数用 $n 表示,例如,$1 表示第一个参数,$2 表示第二个参数,依次类推。请看下面的脚本:

1# cat argc.sh
2#!/bin/bash
3echo "File Name: $0"
4echo "First Parameter : $1"
5echo "First Parameter : $2"
6echo "Quoted Values: $@"
7echo "Quoted Values: $*"
8echo "Total Number of Parameters : $#"

运行结果:

1# sh argc.sh  arg1 arg2 arg3
2File Name: argc.sh
3First Parameter : arg1
4First Parameter : arg2
5Quoted Values: arg1 arg2 arg3
6Quoted Values: arg1 arg2 arg3
7Total Number of Parameters : 3

需要注意的是$10 不能获取第十个参数,获取第十个参数需要${10}。当n>=10时,需要使用${n}来获取参数。示例如下:

 1# cat 10argc.sh
 2#!/bin/bash
 3funWithParam(){
 4    echo "The value of the first parameter is $1 !"
 5    echo "The value of the second parameter is $2 !"
 6    echo "The value of the tenth parameter is $10 !"
 7    echo "The value of the tenth parameter is ${10} !"
 8    echo "The value of the eleventh parameter is ${11} !"
 9    echo "The amount of the parameters is $# !"  # 参数个数
10    echo "The string of the parameters is $* !"  # 传递给函数的所有参数
11}
12funWithParam 1 2 3 4 5 6 7 8 9 34 73

执行结果如下:

1# sh 10argc.sh
2The value of the first parameter is 1 !
3The value of the second parameter is 2 !
4The value of the tenth parameter is 10 !
5The value of the tenth parameter is 34 !
6The value of the eleventh parameter is 73 !
7The amount of the parameters is 11 !
8The string of the parameters is 1 2 3 4 5 6 7 8 9 34 73 !

$* 和 $@ 的区别

$* 和 $@ 都表示传递给函数或脚本的所有参数,不被双引号(” “)包含时,都以”$1” “$2” … “$n” 的形式输出所有参数。但是当它们被双引号(” “)包含时,”$*” 会将所有的参数作为一个整体,以”$1 $2 … $n”的形式输出所有参数;”$@” 会将各个参数分开,以”$1″ “$2” … “$n” 的形式输出所有参数。

下面的例子可以清楚的看到 $* 和 $@ 的区别:

 1# cat param.sh
 2#!/bin/bash
 3echo "\$*=" $*
 4echo "\"\$*\"=" "$*"
 5echo "\$@=" $@
 6echo "\"\$@\"=" "$@"
 7echo "print each param from \$*"
 8for var in $*
 9do
10    echo "$var"
11done
12echo "print each param from \$@"
13for var in $@
14do
15    echo "$var"
16done
17#echo "print each param from \"\$*\""
18echo "print each param from '$*'"
19for var in "$*"
20do
21    echo "$var"
22done
23#echo "print each param from \"\$@\""
24echo "print each param from '$@'"
25for var in "$@"
26do
27    echo "$var"
28done

脚本执行结果如下:

 1# sh param.sh a b c d
 2$*= a b c d
 3"$*"= a b c d
 4$@= a b c d
 5"$@"= a b c d
 6print each param from $*
 7a
 8b
 9c
10d
11print each param from $@
12a
13b
14c
15d
16print each param from 'a b c d'
17a b c d
18print each param from 'a b c d'
19a
20b
21c
22d

退出状态与返回值

$? 可以获取上一个命令的退出状态。所谓退出状态,就是上一个命令执行后的返回结果。退出状态是一个数字,一般情况下,大部分命令执行成功会返回 0,失败返回 1。不过,也有一些命令返回其他值,表示不同类型的错误。下面例子中,命令成功执行:

1# sh argc.sh  argc1 argc2
2File Name: argc.sh
3First Parameter : argc1
4First Parameter : argc2
5Quoted Values: argc1 argc2
6Quoted Values: argc1 argc2
7Total Number of Parameters : 2
8# echo $?
90

$? 也可以表示函数的返回值,返回值的示例如下:

 1# cat return.sh
 2#/bin/bash
 3function fSum()
 4 {
 5     echo $1,$2;
 6     return $(($1+$2));
 7 }
 8 fSum 5 7;
 9 total=$(fSum 3 2);
10 echo $total,$?;

脚本执行的结果如下:

1# sh return.sh
25,7
33,2,5

注:需要注意的是无法使用aa=$?这样的用法调用返回值,使用echo $aa输出会是空。