github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/docs/content/commands/rclone_version.md (about) 1 --- 2 date: 2019-06-20T16:09:42+01:00 3 title: "rclone version" 4 slug: rclone_version 5 url: /commands/rclone_version/ 6 --- 7 ## rclone version 8 9 Show the version number. 10 11 ### Synopsis 12 13 14 Show the version number, the go version and the architecture. 15 16 Eg 17 18 $ rclone version 19 rclone v1.41 20 - os/arch: linux/amd64 21 - go version: go1.10 22 23 If you supply the --check flag, then it will do an online check to 24 compare your version with the latest release and the latest beta. 25 26 $ rclone version --check 27 yours: 1.42.0.6 28 latest: 1.42 (released 2018-06-16) 29 beta: 1.42.0.5 (released 2018-06-17) 30 31 Or 32 33 $ rclone version --check 34 yours: 1.41 35 latest: 1.42 (released 2018-06-16) 36 upgrade: https://downloads.rclone.org/v1.42 37 beta: 1.42.0.5 (released 2018-06-17) 38 upgrade: https://beta.rclone.org/v1.42-005-g56e1e820 39 40 41 42 ``` 43 rclone version [flags] 44 ``` 45 46 ### Options 47 48 ``` 49 --check Check for new version. 50 -h, --help help for version 51 ``` 52 53 See the [global flags page](/flags/) for global options not listed here. 54 55 ### SEE ALSO 56 57 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 58