Created
August 23, 2011 13:42
-
-
Save un33k/1165148 to your computer and use it in GitHub Desktop.
Bash - Simple Skeleton for arg parsing in bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Argument = -t test -r server -p password -v | |
usage() | |
{ | |
cat << EOF | |
usage: $0 options | |
This script run the test1 or test2 over a machine. | |
OPTIONS: | |
-h Show this message | |
-t Test type, can be ‘test1′ or ‘test2′ | |
-r Server address | |
-p Server root password | |
-v Verbose | |
EOF | |
} | |
TEST= | |
SERVER= | |
PASSWD= | |
VERBOSE= | |
while getopts “ht:r:p:v” OPTION | |
do | |
case $OPTION in | |
h) | |
usage | |
exit 1 | |
;; | |
t) | |
TEST=$OPTARG | |
;; | |
r) | |
SERVER=$OPTARG | |
;; | |
p) | |
PASSWD=$OPTARG | |
;; | |
v) | |
VERBOSE=1 | |
;; | |
?) | |
usage | |
exit | |
;; | |
esac | |
done | |
if [[ -z $TEST ]] || [[ -z $SERVER ]] || [[ -z $PASSWD ]] | |
then | |
usage | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment