Created
August 1, 2018 19:11
-
-
Save michaelaguiar/e3d963b1564fdc572d561020f9c6c365 to your computer and use it in GitHub Desktop.
Key / Value Arguments in Shell
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
for i in "$@" | |
do | |
case $i in | |
-o=*|--one=*) | |
ONE="${i#*=}" | |
shift | |
;; | |
-t=*|--two=*) | |
TWO="${i#*=}" | |
shift | |
;; | |
-th=*|--three=*) | |
THREE="${i#*=}" | |
shift | |
;; | |
--default) | |
DEFAULT=YES | |
shift | |
;; | |
*) | |
# unknown option | |
;; | |
esac | |
done | |
echo "One = ${ONE}" | |
echo "Two = ${TWO}" | |
echo "Three = ${THREE}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment