mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:47:34 +00:00
find: Allow unit suffixes to be used with the -size
option
The argument supplied to the `-size` option may now be one of the following suffixes: * b: 512-byte blocks. This is the default unit if no suffix is used. * c: bytes * w: two-byte words * k: kibibytes (1024 bytes) * M: mebibytes (1024 kibibytes) * G: gibibytes (1024 mebibytes) Sizes are rounded to the specified unit before comparison. The unit suffixes are case-sensitive.
This commit is contained in:
parent
9b884a9605
commit
aa7c2f1f0d
2 changed files with 46 additions and 14 deletions
|
@ -32,9 +32,18 @@ specified commands, a `-print` command is implicitly appended.
|
|||
name, a numerical UID may be specified.
|
||||
* `-group name`: Checks if the file is owned by the given group. Instead of a
|
||||
group name, a numerical GID may be specified.
|
||||
* `-size number[c]`: Checks if the file has the given size in 512-byte blocks,
|
||||
rounded up. If the size is followed by the `c` character, checks if the file
|
||||
has the given size in bytes.
|
||||
* `-size number[bcwkMG]`: Checks if the file uses the specified `n` units of
|
||||
space rounded up to the nearest whole unit.
|
||||
|
||||
The unit of space may be specified by any of these suffixes:
|
||||
|
||||
* `b`: 512-byte blocks. This is the default unit if no suffix is used.
|
||||
* `c`: bytes
|
||||
* `w`: two-byte words
|
||||
* `k`: kibibytes (1024 bytes)
|
||||
* `M`: mebibytes (1024 kibibytes)
|
||||
* `G`: gibibytes (1024 mebibytes)
|
||||
|
||||
* `-name pattern`: Checks if the file name matches the given global-style
|
||||
pattern (case sensitive).
|
||||
* `-iname pattern`: Checks if the file name matches the given global-style
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue