1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-29 06:51:03 +02:00

16895: cross-references to the |&' and >(...)' syntax.

This commit is contained in:
Bart Schaefer 2002-03-28 04:22:03 +00:00
parent ac88d2bbef
commit 94f73ed646
2 changed files with 18 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2002-03-27 Bart Schaefer <schaefer@zsh.org>
* 16895: Doc/Zsh/redirect.yo: cross-references to the `|&' and
`>(...)' syntax.
2002-03-27 Oliver Kiddle <opk@zsh.org>
* 16913: Completion/Zsh/Command/_compdef, Doc/Zsh/compsys.yo:

View file

@ -138,6 +138,19 @@ If the order of redirections were reversed,
file descriptor 2 would be associated
with the terminal (assuming file descriptor 1 had been)
and then file descriptor 1 would be associated with file var(fname).
The `tt(|&)' command separator described in
ifzman(em(Simple Commands & Pipelines) in zmanref(zshmisc))\
ifnzman(noderef(Simple Commands & Pipelines))
is a shorthand for `tt(2>&1 |)'.
For output redirections only, if var(word) is of the form
`tt(>LPAR())var(list)tt(RPAR())' then the output is piped to the command
represented by var(list). See
ifzman(\
em(Process Substitution) in zmanref(zshexpn))\
ifnzman(\
noderef(Process Substitution)).
sect(Multios)
cindex(multios)
pindex(MULTIOS, use of)