docs: filtering: added Byte unit for min/max-size parameters.

This commit is contained in:
Mathieu Moreau 2024-09-06 12:28:29 +01:00 committed by GitHub
parent 2d1c2b1f76
commit 2a28b0eaf0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -673,7 +673,7 @@ remote or flag value. The fix then is to quote values containing spaces.
### `--min-size` - Don't transfer any file smaller than this
Controls the minimum size file within the scope of an rclone command.
Default units are `KiB` but abbreviations `K`, `M`, `G`, `T` or `P` are valid.
Default units are `KiB` but abbreviations `B`, `K`, `M`, `G`, `T` or `P` are valid.
E.g. `rclone ls remote: --min-size 50k` lists files on `remote:` of 50 KiB
size or larger.
@ -683,7 +683,7 @@ See [the size option docs](/docs/#size-option) for more info.
### `--max-size` - Don't transfer any file larger than this
Controls the maximum size file within the scope of an rclone command.
Default units are `KiB` but abbreviations `K`, `M`, `G`, `T` or `P` are valid.
Default units are `KiB` but abbreviations `B`, `K`, `M`, `G`, `T` or `P` are valid.
E.g. `rclone ls remote: --max-size 1G` lists files on `remote:` of 1 GiB
size or smaller.