Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[BUG] process substitution breaks when nested or traverses a function
- X-seq: zsh-workers 42698
- From: Francisco de Zuviría Allende <franciscodezuviria@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [BUG] process substitution breaks when nested or traverses a function
- Date: Sat, 21 Apr 2018 06:35:23 -0300
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:reply-to:from:date:message-id:subject:to; bh=dLXy2hcSNhwNlJrg6HCBWdJ9Z4RihqFQVyQhU0LybEE=; b=NmLyk/mzcwyZiQSI2vO8Bd2NssbvTJIUX6ZvTUx/L+7x8OvhdDCi/xkXSoKEPJNrga MTcMxUNV0uDEl41CPQ5ULgBizmCS+kVV+Psnn1m0m1SLIubr3Hv2B/tnRjRNQzzK8USk sO2aqJuCbMJqn154kHmM7ZtoEv1JMZWdx/P7sYyP4EDVmPxSe4mDKIdJejcisvHEB2BY 3vCx2uCE155SFJn7Kqob+FJqy3cUxOLFp9929QDBi8l/xVGkRVdeAnHORf/AEJiPQ5JB O2Vp0L/GJ/4yk4oHUuGVIHvBYbjQJush5fwbnp+WnMoiLGG4MxAkxcidvPNyZgOc30AA ztJQ==
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- Reply-to: franciscodezuviria@xxxxxxxxx
#!/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