Awesome - I never new about process substitution. I wanted to convince myself I knew what it was doing, so I started kicking this around a bit. I expected the first command to output "test." I'm not sure I can explain these results:<p><pre><code> $ echo <(echo test)
/dev/fd/63
$ cat <(echo test)
test</code></pre>