Skip to content

Instantly share code, notes, and snippets.

@L-four
Created April 18, 2012 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save L-four/2410696 to your computer and use it in GitHub Desktop.
Save L-four/2410696 to your computer and use it in GitHub Desktop.
My Little Linux Environment Setup
#!/usr/bin/env bash
VERSION=0.01
version(){
echo "MLLES $VERSION"
}
while getopts lhv OPT
do
case ${OPT} in
v) version; exit ;;
h) usage; exit ;;
\?) usage >&2; exit 1 ;;
esac
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment