diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Doc/Zsh/expn.yo | 17 |
2 files changed, 11 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog index 178684284..25324fc9b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2005-09-02 Peter Stephenson <pws@csr.com> + * 21695: Doc/Zsh/expn.yo: rewrite entry for u globbing flag. + * 21693: Jean-Baptiste Quenot: Completion/Unix/Command/_ant: recursively find targets. diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index a6235222f..a75513b25 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -1864,14 +1864,15 @@ item(tt(G))( files owned by the effective group ID ) item(tt(u)var(id))( -files owned by user ID var(id) if it is a number, if not, than the -character after the `tt(u)' will be used as a separator and the string -between it and the next matching separator -(`tt([)', `tt({)', and `tt(<)' -match `tt(])', `tt(})', and `tt(>)' respectively, -any other character matches -itself) will be taken as a user name, and the user ID of this user will -be taken (e.g. `tt(u:foo:)' or `tt(u[foo])' for user `tt(foo)') +files owned by user ID var(id) if that is a number. Otherwise, +var(id) specifies a user name: the +character after the `tt(u)' will be taken as a separator and the string +between it and the next matching separator will be taken as a user name. +The starting separators `tt([)', `tt({)', and `tt(<)' +match the final separators `tt(])', `tt(})', and `tt(>)', respectively; +any other character matches itself. The selected files are those +owned by this user. For example, `tt(u:foo:)' or `tt(u[foo])' selects +files owned by user `tt(foo)'. ) item(tt(g)var(id))( like tt(u)var(id) but with group IDs or names |