Skip to content

Instantly share code, notes, and snippets.

@jeremyj
Last active August 29, 2015 14:07
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 jeremyj/fa8cd86b4f8bce0225d4 to your computer and use it in GitHub Desktop.
Save jeremyj/fa8cd86b4f8bce0225d4 to your computer and use it in GitHub Desktop.
Bash double IF condition
echo -n "Input: " && read IN
IN=`echo $IN`
if ! [[ $IN == "1" || $IN == "2" ]]; then
echo "NO"
exit
else
echo "SI"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment