mirror of
https://github.com/rclone/rclone.git
synced 2024-11-24 01:47:23 +08:00
1.9 KiB
1.9 KiB
title | description | slug | url |
---|---|---|---|
rclone about | Get quota information from the remote. | rclone_about | /commands/rclone_about/ |
rclone about
Get quota information from the remote.
Synopsis
rclone about
prints quota information about a remote to standard
output. The output is typically used, free, quota and trash contents.
E.g. Typical output fromrclone about remote:
is:
Total: 17G
Used: 7.444G
Free: 1.315G
Trashed: 100.000M
Other: 8.241G
Where the fields are:
- Total: total size available.
- Used: total size used
- Free: total space available to this user.
- Trashed: total space used by trash
- Other: total amount in other storage (e.g. Gmail, Google Photos)
- Objects: total number of objects in the storage
Not all backends print all fields. Information is not included if it is not
provided by a backend. Where the value is unlimited it is omitted.
Applying a --full
flag to the command prints the bytes in full, e.g.
Total: 18253611008
Used: 7993453766
Free: 1411001220
Trashed: 104857602
Other: 8849156022
A --json
flag generates conveniently computer readable output, e.g.
{
"total": 18253611008,
"used": 7993453766,
"trashed": 104857602,
"other": 8849156022,
"free": 1411001220
}
Not all backends support the rclone about
command.
See List of backends that do not support about
rclone about remote: [flags]
Options
--full Full numbers instead of SI units
-h, --help help for about
--json Format output as JSON
See the global flags page for global options not listed here.
SEE ALSO
- rclone - Show help for rclone commands, flags and backends.