Skip to content

Instantly share code, notes, and snippets.

@mstyne
Created October 24, 2013 19:12
Show Gist options
  • Save mstyne/7143245 to your computer and use it in GitHub Desktop.
Save mstyne/7143245 to your computer and use it in GitHub Desktop.
tesla:~ $ cat foo.txt
hello
tesla:~ $ `cat foo.txt`
-bash: hello: command not found
tesla:~ $ HELLO=`cat foo.txt`
tesla:~ $ echo $HELLO
hello
@mstyne
Copy link
Author

mstyne commented Oct 24, 2013

HELLO

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment