Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

[BUG] process substitution breaks when nested or traverses a function



#!/bin/bash
foo() { cat <(cat "$@"); }; foo <(echo bar);
bar

#!/bin/zsh
foo() { cat <(cat "$@"); }; foo <(echo bar);
cat: /proc/self/fd/11: No such file or directory

Best of regards


Messages sorted by: Reverse Date, Date, Thread, Author