bash arg parse
1.0.0
이름이 지정된 짧은 CLI 인수와 위치별 CLI 인수를 구문 분석할 수 있는 간단한 bash 스크립트입니다.
이는 다양한 CLI 인수를 허용하는 간단한 bash 스크립트의 템플릿으로 사용됩니다.
bash cli 스크립트의 기초로 arg_parse_example
사용하십시오.
예제를 실행하려면...
$ ./arg_parse_example -h
usage: arg_parse_example -a AN_ARG -s SOME_MORE_ARGS [-y YET_MORE_ARGS || -h ]
-a | --an_arg : A super special argument
-s | --some_more_args : Another argument
-y | --yet_more_args : An optional argument
-h | --help : This message
$ ./arg_parse_example -a foo --some_more_args bar one two
you passed in...
positional arg 1: one
positional arg 2: two
named arg: an_arg: foo
named arg: some_more_args: bar
named arg: yet_more_args: a default value