Skip to content

Instantly share code, notes, and snippets.

@mykolaharmash
Last active August 20, 2017 10:29
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 mykolaharmash/11deccf4031e3438fe1da14762cfcb8a to your computer and use it in GitHub Desktop.
Save mykolaharmash/11deccf4031e3438fe1da14762cfcb8a to your computer and use it in GitHub Desktop.
show_exit_code() {
local ex=$?
if [ $ex -ne 0 ]
then
echo -e "\033[0;31m$ex\033[0m"
fi
}
PROMPT_COMMAND="show_exit_code;$PROMPT_COMMAND"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment