Skip to content

Instantly share code, notes, and snippets.

@bitprophet
Created October 15, 2009 23:23
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 bitprophet/211384 to your computer and use it in GitHub Desktop.
Save bitprophet/211384 to your computer and use it in GitHub Desktop.
ytram:/u/local [master] $ echo "$FOO"
ytram:/u/local [master] $ FOO='wtf' echo "$FOO"
ytram:/u/local [master] $ FOO='wtf' echo '$FOO'
$FOO
ytram:/u/local [master] $ FOO="wtf" echo "$FOO"
ytram:/u/local [master] $ export FOO="wtf"
ytram:/u/local [master] $ echo "$FOO"
wtf
ytram:/u/local [master] $
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment