Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: [BUG] process substitution breaks when nested or traverses a function
- X-seq: zsh-workers 43034
- From: Francisco de Zuviría Allende <franciscodezuviria@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Re: [BUG] process substitution breaks when nested or traverses a function
- Date: Sun, 17 Jun 2018 00:14:10 -0300
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:reply-to:in-reply-to:references:from:date:message-id :subject:to:content-transfer-encoding; bh=W/5399gpVHpAyBiP+Y7seuE4BG4Ea+FIYcsepB2x2+E=; b=gU/acwWs+nMdUwhVJbuI/1che56A0KEHs1N+nndNzpx4phT+AyrGoqRot5Y2ImNDHz OkbCKFFtxYS7QCWfkTc08hyiR6aenlvA8RAF9E/1vYXBY+m/WKEzQ7p268Flf3FhnFs6 fOYyieKjmuaD/zcWyQibA75O1h+UZzIy/fUxCyxhhPBIJ8j8jJ/UxqmdbRdN5pa3ByhD BvNKSBHvfL8IPEiJdCV7VJRcGzC80FZQ2il0ax2Ol+q4ADuN/UPBnIX3SKTYDkOBYYwa Rlp6MB5eNsexQ4f4MivgPf6yNNQcBgVp9CBzO6SVhZFwPOwXjNY5bx9/FY67qgd4ffoY 6r6g==
- In-reply-to: <CA++-COyOYiE_snQeLB_jsDmWAvne9bjS7GWnA28mPNwTeVo0kg@mail.gmail.com>
- 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
- References: <CA++-COyOYiE_snQeLB_jsDmWAvne9bjS7GWnA28mPNwTeVo0kg@mail.gmail.com>
- Reply-to: franciscodezuviria@xxxxxxxxx
This problem still happens. There is still no bug tracking system for
zsh, right?
On Sat, Apr 21, 2018 at 6:35 AM, Francisco de Zuviría Allende
<franciscodezuviria@xxxxxxxxx> wrote:
> #!/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