Re: bash-3.1.1: source does not work in conjunction with process substitution
Dmitry V. Levin wrote: > Hi, > > The "source" builtin does not work in conjunction with process > substitution: Correct. The bash source builtin only works with regular files. This is a limitation that will someday be lifted. Chet -- ``The lyf so short, the craft so long to lerne.'' - Chauce
bash-3.1.1: source does not work in conjunction with process substitution
Hi, The "source" builtin does not work in conjunction with process substitution: $ bash -ec 'cat <(echo echo 1)' echo 1