2018-04-28 12:46:27 +02:00
|
|
|
---
|
|
|
|
title: "rclone about"
|
2020-05-16 16:11:55 +02:00
|
|
|
description: "Get quota information from the remote."
|
2018-04-28 12:46:27 +02:00
|
|
|
slug: rclone_about
|
|
|
|
url: /commands/rclone_about/
|
2020-02-10 13:31:45 +01:00
|
|
|
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/about/ and as part of making a release run "make commanddocs"
|
2018-04-28 12:46:27 +02:00
|
|
|
---
|
2020-05-22 12:17:37 +02:00
|
|
|
# rclone about
|
2018-04-28 12:46:27 +02:00
|
|
|
|
|
|
|
Get quota information from the remote.
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## Synopsis
|
2018-04-28 12:46:27 +02:00
|
|
|
|
|
|
|
|
2021-06-08 17:57:04 +02:00
|
|
|
`rclone about` prints quota information about a remote to standard
|
2021-02-02 14:42:35 +01:00
|
|
|
output. The output is typically used, free, quota and trash contents.
|
2018-04-28 12:46:27 +02:00
|
|
|
|
2021-06-08 17:57:04 +02:00
|
|
|
E.g. Typical output from `rclone about remote:` is:
|
2018-04-28 12:46:27 +02:00
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
Total: 17 GiB
|
|
|
|
Used: 7.444 GiB
|
|
|
|
Free: 1.315 GiB
|
|
|
|
Trashed: 100.000 MiB
|
|
|
|
Other: 8.241 GiB
|
2018-04-28 12:46:27 +02:00
|
|
|
|
|
|
|
Where the fields are:
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
* 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.
|
2018-04-28 12:46:27 +02:00
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
All sizes are in number of bytes.
|
2018-04-28 12:46:27 +02:00
|
|
|
|
2021-02-02 14:42:35 +01:00
|
|
|
Applying a `--full` flag to the command prints the bytes in full, e.g.
|
2018-04-28 12:46:27 +02:00
|
|
|
|
|
|
|
Total: 18253611008
|
|
|
|
Used: 7993453766
|
|
|
|
Free: 1411001220
|
|
|
|
Trashed: 104857602
|
|
|
|
Other: 8849156022
|
|
|
|
|
2022-03-18 13:29:54 +01:00
|
|
|
A `--json` flag generates conveniently machine-readable output, e.g.
|
2018-04-28 12:46:27 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
"total": 18253611008,
|
|
|
|
"used": 7993453766,
|
|
|
|
"trashed": 104857602,
|
|
|
|
"other": 8849156022,
|
|
|
|
"free": 1411001220
|
|
|
|
}
|
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
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.
|
2021-02-02 14:42:35 +01:00
|
|
|
|
2021-11-01 16:42:05 +01:00
|
|
|
Some backends does not support the `rclone about` command at all,
|
|
|
|
see complete list in [documentation](https://rclone.org/overview/#optional-features).
|
2021-02-02 14:42:35 +01:00
|
|
|
|
2018-04-28 12:46:27 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
rclone about remote: [flags]
|
|
|
|
```
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## Options
|
2018-04-28 12:46:27 +02:00
|
|
|
|
|
|
|
```
|
2021-11-01 16:42:05 +01:00
|
|
|
--full Full numbers instead of human-readable
|
2018-04-28 12:46:27 +02:00
|
|
|
-h, --help help for about
|
|
|
|
--json Format output as JSON
|
|
|
|
```
|
|
|
|
|
2019-06-20 17:18:02 +02:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## SEE ALSO
|
2018-04-28 12:46:27 +02:00
|
|
|
|
2018-10-15 12:03:08 +02:00
|
|
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
2018-04-28 12:46:27 +02:00
|
|
|
|