diff options
author | Manuel Presnitz <mpy@gmx.net> | 2014-02-19 14:12:03 +0100 |
---|---|---|
committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2014-03-01 19:08:17 +0000 |
commit | 973e5dc37d27cf5c39f33b0ff8839b167004bf3f (patch) | |
tree | b570ea6986e73a3693f30b68bae36ff63df1f1f3 /Doc | |
parent | f798f13b0eba1f31cd2d760441ac9d36a6ac5263 (diff) | |
download | zsh-973e5dc37d27cf5c39f33b0ff8839b167004bf3f.tar.gz zsh-973e5dc37d27cf5c39f33b0ff8839b167004bf3f.tar.xz zsh-973e5dc37d27cf5c39f33b0ff8839b167004bf3f.zip |
32412 / 32415: New giga- and terabyte units for glob qualifiers
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/Zsh/expn.yo | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo index 6459c6ff7..de0f454c4 100644 --- a/Doc/Zsh/expn.yo +++ b/Doc/Zsh/expn.yo @@ -2521,10 +2521,12 @@ item(tt(L)[tt(PLUS())|tt(-)]var(n))( files less than var(n) bytes (tt(-)), more than var(n) bytes (tt(PLUS())), or exactly var(n) bytes in length. -If this flag is directly followed by a `tt(k)' (`tt(K)'), `tt(m)' -(`tt(M)'), or `tt(p)' (`tt(P)') (e.g. `tt(Lk-50)') the check is performed -with kilobytes, megabytes, or blocks (of 512 bytes) instead. In this -case a file is regarded as "exactly" the size if the file size rounded up +If this flag is directly followed by a em(size specifier) `tt(k)' (`tt(K)'), +`tt(m)' (`tt(M)'), or `tt(p)' (`tt(P)') (e.g. `tt(Lk-50)') the check is +performed with kilobytes, megabytes, or blocks (of 512 bytes) instead. +(On some systems additional specifiers are available for gigabytes, +`tt(g)' or `tt(G)', and terabytes, `tt(t)' or `tt(T)'.) If a size specifier +is used a file is regarded as "exactly" the size if the file size rounded up to the next unit is equal to the test size. Hence `tt(*LPAR()Lm1+RPAR())' matches files from 1 byte up to 1 Megabyte inclusive. Note also that the set of files "less than" the test size only includes files that would |