Skip to content

Instantly share code, notes, and snippets.

@mattintosh4
Last active August 29, 2015 14:23
Show Gist options
  • Save mattintosh4/15f06010659b96b07297 to your computer and use it in GitHub Desktop.
Save mattintosh4/15f06010659b96b07297 to your computer and use it in GitHub Desktop.
#!/bin/bash
foo=1
echo $?
export foo
export bar=1
echo $?
#!/bin/bash
foo=`false`
echo $?
export bar=`false`
echo $?
#!/bin/bash
set -e
foo=`false` || :
export foo
bar=`false` || bar="false"
export bar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment