Skip to content

Instantly share code, notes, and snippets.

@gugat
Created September 25, 2019 13:36
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 gugat/2397cb16196bf09cc4850cfcbd608de0 to your computer and use it in GitHub Desktop.
Save gugat/2397cb16196bf09cc4850cfcbd608de0 to your computer and use it in GitHub Desktop.
How to exit if no arguments are given to the script
#!/bin/bash
if [[ $# -eq 0 ]] ; then
echo 'Give me a parameter :D'
exit 0
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment