Skip to content

Instantly share code, notes, and snippets.

@moose-byte
Created December 31, 2016 22:15
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 moose-byte/9ed2c97b72dc5051ee95b4af634a677c to your computer and use it in GitHub Desktop.
Save moose-byte/9ed2c97b72dc5051ee95b4af634a677c to your computer and use it in GitHub Desktop.
#!/bin/bash
while getopts ":a" opt; do
case $opt in
a)
echo "-a was triggered" >&2
;;
\?)
echo "Invalid option: -$OPTARG" >&2
;;
esac
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment