diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2007-12-13 21:57:17 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2007-12-13 21:57:17 +0000 |
commit | b7669a83992b915d9e114f7e208286196fec70f2 (patch) | |
tree | bef6a5d7937e1e73ccf326b88ac357035773c40e /Doc/Zsh/expn.yo | |
parent | 724f55afdaa501b7039bbcf7cb20aacc28e9022f (diff) | |
download | zsh-b7669a83992b915d9e114f7e208286196fec70f2.tar.gz zsh-b7669a83992b915d9e114f7e208286196fec70f2.tar.xz zsh-b7669a83992b915d9e114f7e208286196fec70f2.zip |
24241: explain the effect of time glob modifiers better
Diffstat (limited to 'Doc/Zsh/expn.yo')
-rw-r--r-- | Doc/Zsh/expn.yo | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index 2803ae994..9fb9f2628 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -2076,8 +2076,14 @@ Files accessed more than var(n) days ago are selected by a positive var(n) value (tt(PLUS())var(n)). Optional unit specifiers `tt(M)', `tt(w)', `tt(h)', `tt(m)' or `tt(s)' (e.g. `tt(ah5)') cause the check to be performed with months (of 30 days), weeks, hours, minutes or seconds -instead of days, respectively. For instance, `tt(echo *(ah-5))' would -echo files accessed within the last five hours. +instead of days, respectively. + +Any fractional part of the difference between the access time and the +current part in the appropriate units is ignored in the comparison. For +instance, `tt(echo *(ah-5))' would echo files accessed within the last +five hours, while `tt(echo *(ah+5))' would echo files accessed at least +six hours ago, as times strictly between five and six hours are treated +as five hours. ) item(tt(m)[tt(Mwhms)][tt(-)|tt(PLUS())]var(n))( like the file access qualifier, except that it uses the file modification |