Skip to content

Instantly share code, notes, and snippets.

@miguel-amaral
Created June 5, 2018 17:26
Show Gist options
  • Save miguel-amaral/834f99b0b83b4c8df5d28c2981ea4ee0 to your computer and use it in GitHub Desktop.
Save miguel-amaral/834f99b0b83b4c8df5d28c2981ea4ee0 to your computer and use it in GitHub Desktop.
Bash Last Command ok or not ok
some_command
if [ $? -eq 0 ]; then
echo OK
else
echo FAIL
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment