Skip to content

Instantly share code, notes, and snippets.

@m3nd3s
Created April 27, 2012 03:02
Show Gist options
  • Select an option

  • Save m3nd3s/2505336 to your computer and use it in GitHub Desktop.

Select an option

Save m3nd3s/2505336 to your computer and use it in GitHub Desktop.
Exemplo IF
if [ 5 -gt 4 ]
then
echo "5 é maior que 4"
fi
# ou
if [ 5 -gt 4 ]; then
echo "5 é maior que 4"
fi
# ou
if [ 5 -gt 4 ]; then echo "5 é maior que 4"; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment