-d is not an option $
语句检查每个参数的有效选项。当有一个被发现时,适当的命令将在语句中运行。
$ ./test15 -d -c -a -d is not an option Found the -c option Found the -a option $
Separating options from parameters(从参数中分离选项) 通常情况下,你会要同时使用脚本的选项和参数。做这个的标准方法是用一个特殊的字符代码来分隔两个,当选项完成后,正常参数开始时,会告诉脚本。
在LINUX中,这个特殊的字符是(--)。脚本采用(--)表示选项列表的结束。看到了(--),你的脚本可以把剩余的命令行参数作为参数来处理,而不是选项。
要检查(--),你需要做的就是添加另一个语句:
$ cat test16 #!/bin/bash
# extracting options and parameters while [ -n \do
结果表明,脚本会把所有的参数看作选项。case \
-a) echo \-b) echo \-c) echo \--) shift break ;;
*) echo \esac shift done count=1 for param in $@ do
echo \count=$[ $count + 1 ] done $
$ ./test16 -c -a -b -- test1 test2 test3 Found the -c option Found the -a option Found the -b option
Parameter #1: test1 Parameter #2: test2 Parameter #3: test3 $
当脚本到达(--)时,停止处理选项,并假定任何剩余的参数都是命令行参数。
Processing options with values(处理选项的值)
一些选项需要一个附加的参数值。在这些情况下,命令行看起来像这样:
$ ./testing -a test1 -b -c -d test2
当你的命令行选项需要一个附加的参数,你的脚本必须能够检测到。下面是一个例子:
$ cat test17 #!/bin/bash
# extracting command line options and values while [ -n \do
case \
-a) echo \-b) param=\
echo \the -b option, with parameter value $param\shift 2;;
-c) echo \--) shift break;;
*) echo \esac shift done count=1
for param in \do
echo \count=$[ $count + 1 ] done
$ ./test17 -a -b test1 -d Found the -a option
Found the -b option, with parameter value test1 -d is not an option $
在这个例子中,案例语句定义了它处理的三个选项。-b选项还需要一个附加的参数值。因为被处理的参数是1,你知道,额外的参数值位于2(因为所有的参数都在处理后偏移)。只需从2变量中提取参数值。当然,因为我们使用了这个选项的双参数点,您还需要设置移