See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
#/bin/bash | |
if [[ $# -eq 0 ]] ; then | |
echo "Usage: `basename "$0"` <Kibana-URL> [noauth]" | |
echo "Example: `basename "$0"` http://localhost:5601" | |
exit 1 | |
fi | |
AUTH="" | |
if [[ "$2" != "noauth" ]]; then |