1
0
mirror of https://github.com/rclone/rclone.git synced 2025-07-06 06:27:53 +02:00

make commanddocs for v1.56 (#5383)

This commit is contained in:
Ivan Andreev
2021-06-08 18:57:04 +03:00
committed by GitHub
parent 1f846c18d4
commit 29f967dba3
26 changed files with 728 additions and 127 deletions

View File

@ -23,8 +23,8 @@ If you supply the `--rmdirs` flag, it will remove all empty directories along wi
You can also use the separate command `rmdir` or `rmdirs` to
delete empty directories only.
For example, to delete all files bigger than 100 MiByte, you may first want to check what
would be deleted (use either):
For example, to delete all files bigger than 100 MiB, you may first want to
check what would be deleted (use either):
rclone --min-size 100M lsl remote:path
rclone --dry-run --min-size 100M delete remote:path
@ -34,7 +34,7 @@ Then proceed with the actual delete:
rclone --min-size 100M delete remote:path
That reads "delete everything with a minimum size of 100 MiB", hence
delete all files bigger than 100 MiByte.
delete all files bigger than 100 MiB.
**Important**: Since this can cause data loss, test first with the
`--dry-run` or the `--interactive`/`-i` flag.