Skip to content

Instantly share code, notes, and snippets.

@bradharms
Created May 4, 2018 18:45
Show Gist options
  • Save bradharms/f5f0e3dc932bb1c83e00a4a5822610c7 to your computer and use it in GitHub Desktop.
Save bradharms/f5f0e3dc932bb1c83e00a4a5822610c7 to your computer and use it in GitHub Desktop.
#!/bin/bash
skipDownload=false
for arg in $@; do
case $arg in
'--skip-download')
skipDownload=true;
;;
esac
done
if [ "$skipDownload" = true ]; then
echo "Skipping downloads";
else
echo "Downloading"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment