Skip to content

Instantly share code, notes, and snippets.

@cataphract
Last active June 7, 2016 11:45
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 cataphract/316698c7843a21815cbe16096318aeb9 to your computer and use it in GitHub Desktop.
Save cataphract/316698c7843a21815cbe16096318aeb9 to your computer and use it in GitHub Desktop.
$ cat e
a=3
b="5 6"
$ env "$(cat e | xargs)" ruby -e 'p ENV["a"]; p ENV["b"]'
"3 b=5 6"
nil
$ env "$(cat e | xargs -d '\n')" ruby -e 'p ENV["a"]; p ENV["b"]'
"3 b=\"5 6\""
nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment