Skip to content

Instantly share code, notes, and snippets.

@kwent
Created March 9, 2016 01:05
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 kwent/34639ebe75e304c4d911 to your computer and use it in GitHub Desktop.
Save kwent/34639ebe75e304c4d911 to your computer and use it in GitHub Desktop.
Echo command exit code
#!/bin/bash
set -o errexit # Always use `errexit`
run_the_cmd && code=$? || code=$?
echo "The exit code was: $code" >&2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment