Skip to content

Instantly share code, notes, and snippets.

@sarum9in
Created November 7, 2014 11:35
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 sarum9in/58340bcf58902b422b6e to your computer and use it in GitHub Desktop.
Save sarum9in/58340bcf58902b422b6e to your computer and use it in GitHub Desktop.
pipefail example
#!/bin/sh
file="I/Don't/Exist"
cat "$file" | true
echo $?
set -o pipefail
cat "$file" | true
echo $?
set +o pipefail
cat "$file" | true
echo $?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment