Last active
December 21, 2015 11:59
-
-
Save zhoudd/6302821 to your computer and use it in GitHub Desktop.
shell template
This file contains hidden or 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 | |
# | |
#----------------------- | |
# Author: zhoudd | |
# Create: 2013-08-22 | |
#---------------------- | |
# | |
#script name | |
_me=${0##*/} | |
usage(){ | |
echo " | |
$_me Version 1.0 | |
usage : | |
$_me <argc> <argv> | |
eg : | |
$_me args0 args1 "; | |
#quit | |
exit 0; | |
} | |
case $1 in | |
"help"|"-h"|"-v"|"--help"|"--version"|"-version") usage | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment