Created
December 7, 2011 11:40
-
-
Save dekokun/1442506 to your computer and use it in GitHub Desktop.
シェルスクリプトのオプションとって、なんかそれっぽく処理してくれる記述
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
usage() | |
{ | |
echo | |
echo -e >&2 "\tUsage: $0 [-f]" | |
echo -e "\t\t-f It's usage hogehoge !!!" | |
echo | |
} | |
while getopts "hf" flag | |
do | |
case $flag in | |
\?) usage;exit 1;; | |
h) usage;exit 1;; | |
f) OPT_F=true;; | |
esac | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment