github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/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 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/about/ and as part of making a release run "make commanddocs" 7 --- 8 # rclone about 9 10 Get quota information from the remote. 11 12 ## Synopsis 13 14 15 Get quota information from the remote, like bytes used/free/quota and bytes 16 used in the trash. Not supported by all remotes. 17 18 This will print to stdout something like this: 19 20 Total: 17G 21 Used: 7.444G 22 Free: 1.315G 23 Trashed: 100.000M 24 Other: 8.241G 25 26 Where the fields are: 27 28 * Total: total size available. 29 * Used: total size used 30 * Free: total amount this user could upload. 31 * Trashed: total amount in the trash 32 * Other: total amount in other storage (eg Gmail, Google Photos) 33 * Objects: total number of objects in the storage 34 35 Note that not all the backends provide all the fields - they will be 36 missing if they are not known for that backend. Where it is known 37 that the value is unlimited the value will also be omitted. 38 39 Use the --full flag to see the numbers written out in full, eg 40 41 Total: 18253611008 42 Used: 7993453766 43 Free: 1411001220 44 Trashed: 104857602 45 Other: 8849156022 46 47 Use the --json flag for a computer readable output, eg 48 49 { 50 "total": 18253611008, 51 "used": 7993453766, 52 "trashed": 104857602, 53 "other": 8849156022, 54 "free": 1411001220 55 } 56 57 58 ``` 59 rclone about remote: [flags] 60 ``` 61 62 ## Options 63 64 ``` 65 --full Full numbers instead of SI units 66 -h, --help help for about 67 --json Format output as JSON 68 ``` 69 70 See the [global flags page](/flags/) for global options not listed here. 71 72 ## SEE ALSO 73 74 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 75