Created
October 15, 2009 23:23
-
-
Save bitprophet/211384 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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