I am trying to do something like this
ruby test.rb | source /dev/stdin
where test.rb just prints out cd /. There are no errors, but it doesn't do anything either. If I use this:
ruby test.rb > /tmp/eraseme2352; source /tmp/eraseme2352
it works fine, but I want to avoid the intermediate file.
Edit: The whole point of this is that the changes need to persist when the command is done. Sorry I didn't make that clearer earlier.
source <(ruby test.rb). – Jonathan Leffler Apr 4 '10 at 15:48sh: syntax error near unexpected token '('? That's what I got on Snow Leopard with 'sh' as my shell. But it runs OK if I'm using bash instead of sh. If I trycat <(echo a b c)I get the result I expect (one line of output with 'a b c'). If I try 'source' or '.' instead, it seems to be ignored - which I take to be equivalent to "it forks and execs the command and the sub-shell does the source and then exits". Worth a try, but not the answer. It does look like you will have to do the job the long-hand way, remembering to erase the eraseme file ASAP. – Jonathan Leffler Apr 4 '10 at 16:30source <(echo 'echo a b c')orsource <(echo 'testvar=TestVal'); echo $testvar– Dennis Williamson Apr 4 '10 at 19:20