Skip to content

Instantly share code, notes, and snippets.

@piotrpersona
Created April 18, 2019 14:31
Show Gist options
  • Save piotrpersona/dc23c8faf436c2f883868d282b5b9735 to your computer and use it in GitHub Desktop.
Save piotrpersona/dc23c8faf436c2f883868d282b5b9735 to your computer and use it in GitHub Desktop.
Bash arguments parsing
while [[ "${#}" -gt 0 ]]; do
case "${1}" in
-i|--inventory) INVENTORY="${2}"; shift 2;;
-h|--help) display_help; exit 1;;
esac
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment