shell getopts 用法
原创 2013年12月22日 22:05:38
http://www.jb51.cc/article/p-gnkhbtiz-vg.html
首先先来一个例子吧:
- [hello@Gitshell]$bashtest.sh-ahello
- thisis-atheargis!hello
- [hello@Gitshell]$moretest.sh
- #!/bin/bash
- whilegetopts"a:"opt;do
- case$optin
- a)
- echo"thisis-atheargis!$OPTARG"
- ;;
- \?)
- echo"Invalidoption:-$OPTARG"
- ;;
- esac
- done
getopts的使用形式是:getopts option_string variable
getopts一共有两个参数,第一个是-a这样的选项,第二个参数是 hello这样的参数。
选项之间可以通过冒号
:进行分隔,也可以直接相连接,:表示选项后面必须带有参数,如果没有可以不加实际值进行传递
例如:getopts ahfvc: option表明选项a、h、f、v可以不加实际值进行传递,而选项c必须取值。使用选项取值时,必须使用变量OPTARG保存该值。
[cpp]
print?
- [hello@Gitshell]$bashtest.sh-ahello-b
- thisis-atheargis!hello
- test.sh:optionrequiresanargument--b
- Invalidoption:-
- [hello@Gitshell]$bashtest.sh-ahello-bhello-c
- thisis-atheargis!hello
- thisis-btheargis!hello
- thisis-ctheargis!
- [hello@Gitshell]$moretest.sh
- #!/bin/bash
- whilegetopts"a:b:cdef"opt;do
- case$optin
- a)
- echo"thisis-atheargis!$OPTARG"
- ;;
- b)
- echo"thisis-btheargis!$OPTARG"
- ;;
- c)
- echo"thisis-ctheargis!$OPTARG"
- ;;
- \?)
- echo"Invalidoption:-$OPTARG"
- ;;
- esac
- done
- [hello@Gitshell]$
情况一,没有冒号:
[cpp]
print?
- [hello@Gitshell]$bashtest.sh-ahello
- thisis-atheargis!hello
- [hello@Gitshell]$bashtest.sh-a
- test.sh:optionrequiresanargument--a
- Invalidoption:-
- [hello@Gitshell]$moretest.sh
- #!/bin/bash
- whilegetopts"a:"opt;do
- case$optin
- a)
- echo"thisis-atheargis!$OPTARG"
- ;;
- \?)
- echo"Invalidoption:-$OPTARG"
- ;;
- esac
- done
- [hello@Gitshell]$
情况二,有冒号:
[cpp]
print?
- [hello@Gitshell]$bashtest.sh-ahello
- thisis-atheargis!hello
- [hello@Gitshell]$bashtest.sh-a
- [hello@Gitshell]$moretest.sh
- #!/bin/bash
- whilegetopts":a:"opt;do
- case$optin
- a)
- echo"thisis-atheargis!$OPTARG"
- ;;
- \?)
- echo"Invalidoption:-$OPTARG"
- ;;
- esac
- done
getopts option_string variable
invalid option时,varname会被设成?,$OPTARG是出问题的option;
miss option argument时,varname会被设成:,$OPTARG是出问题的option。
原文链接:https://www.f2er.com/bash/389881.html