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