Skip to content

Instantly share code, notes, and snippets.

@tjt263
Created January 12, 2018 23:26
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 tjt263/ed915c93b8626a3d900b185d057fc46d to your computer and use it in GitHub Desktop.
Save tjt263/ed915c93b8626a3d900b185d057fc46d to your computer and use it in GitHub Desktop.
getopts demo
#!/usr/bin/env bash
while getopts abc opt
do
case $opt in
a) ...;;
b) ...;;
c) ...;;
esac
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment