github.com/artpar/rclone@v1.67.3/docs/content/commands/rclone_about.md (about) 1 --- 2 title: "rclone about" 3 description: "Get quota information from the remote." 4 slug: rclone_about 5 url: /commands/rclone_about/ 6 versionIntroduced: v1.41 7 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/about/ and as part of making a release run "make commanddocs" 8 --- 9 # rclone about 10 11 Get quota information from the remote. 12 13 ## Synopsis 14 15 16 `rclone about` prints quota information about a remote to standard 17 output. The output is typically used, free, quota and trash contents. 18 19 E.g. Typical output from `rclone about remote:` is: 20 21 Total: 17 GiB 22 Used: 7.444 GiB 23 Free: 1.315 GiB 24 Trashed: 100.000 MiB 25 Other: 8.241 GiB 26 27 Where the fields are: 28 29 * Total: Total size available. 30 * Used: Total size used. 31 * Free: Total space available to this user. 32 * Trashed: Total space used by trash. 33 * Other: Total amount in other storage (e.g. Gmail, Google Photos). 34 * Objects: Total number of objects in the storage. 35 36 All sizes are in number of bytes. 37 38 Applying a `--full` flag to the command prints the bytes in full, e.g. 39 40 Total: 18253611008 41 Used: 7993453766 42 Free: 1411001220 43 Trashed: 104857602 44 Other: 8849156022 45 46 A `--json` flag generates conveniently machine-readable output, e.g. 47 48 { 49 "total": 18253611008, 50 "used": 7993453766, 51 "trashed": 104857602, 52 "other": 8849156022, 53 "free": 1411001220 54 } 55 56 Not all backends print all fields. Information is not included if it is not 57 provided by a backend. Where the value is unlimited it is omitted. 58 59 Some backends does not support the `rclone about` command at all, 60 see complete list in [documentation](https://rclone.org/overview/#optional-features). 61 62 63 ``` 64 rclone about remote: [flags] 65 ``` 66 67 ## Options 68 69 ``` 70 --full Full numbers instead of human-readable 71 -h, --help help for about 72 --json Format output as JSON 73 ``` 74 75 76 See the [global flags page](/flags/) for global options not listed here. 77 78 # SEE ALSO 79 80 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 81