X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=examples%2Fbashisms%2Fexample_getops_parsing.txt;fp=examples%2Fbashisms%2Fexample_getops_parsing.txt;h=0000000000000000000000000000000000000000;hb=5af202498131eb5eed099b84187e59889303faa8;hp=1f26b80a43f255c0348f81fc1c5da3e12259a92f;hpb=a4d12589f1cd01826814842cde0b3eac95890bc9;p=feisty_meow.git diff --git a/examples/bashisms/example_getops_parsing.txt b/examples/bashisms/example_getops_parsing.txt deleted file mode 100644 index 1f26b80a..00000000 --- a/examples/bashisms/example_getops_parsing.txt +++ /dev/null @@ -1,16 +0,0 @@ - -# shell option parsing -- old school version only handles single dash options. - -while getopts "fr:q:a:h" opt; do - case "${opt}" in - f) force_query=1; ;; - r) row_num="${OPTARG}"; ;; - q) queue_name="${OPTARG}"; ;; - a) alias_name="${OPTARG}"; ;; - h) usage 1>&2; exit ${EX_OK}; ;; - ?) usage 1>&2; exit ${EX_USAGE}; ;; - esac -done - -shift $(($OPTIND - 1)) -