Skip to content

Instantly share code, notes, and snippets.

@fczuardi
Last active August 29, 2015 14:17
Show Gist options
  • Select an option

  • Save fczuardi/b9bd2579be688e394654 to your computer and use it in GitHub Desktop.

Select an option

Save fczuardi/b9bd2579be688e394654 to your computer and use it in GitHub Desktop.
old=2
testmode=2
if [[ ($old != 1) && ($testmode != 1) ]]
then
echo "temporary files"
else
echo "something else"
fi
if [[ !($old = 1 || $testmode = 1) ]]
then
echo "temporary files"
else
echo "something else"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment