github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/docs/content/commands/rclone_version.md (about) 1 --- 2 title: "rclone version" 3 description: "Show the version number." 4 slug: rclone_version 5 url: /commands/rclone_version/ 6 versionIntroduced: v1.33 7 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/version/ and as part of making a release run "make commanddocs" 8 --- 9 # rclone version 10 11 Show the version number. 12 13 ## Synopsis 14 15 16 Show the rclone version number, the go version, the build target 17 OS and architecture, the runtime OS and kernel version and bitness, 18 build tags and the type of executable (static or dynamic). 19 20 For example: 21 22 $ rclone version 23 rclone v1.55.0 24 - os/version: ubuntu 18.04 (64 bit) 25 - os/kernel: 4.15.0-136-generic (x86_64) 26 - os/type: linux 27 - os/arch: amd64 28 - go/version: go1.16 29 - go/linking: static 30 - go/tags: none 31 32 Note: before rclone version 1.55 the os/type and os/arch lines were merged, 33 and the "go/version" line was tagged as "go version". 34 35 If you supply the --check flag, then it will do an online check to 36 compare your version with the latest release and the latest beta. 37 38 $ rclone version --check 39 yours: 1.42.0.6 40 latest: 1.42 (released 2018-06-16) 41 beta: 1.42.0.5 (released 2018-06-17) 42 43 Or 44 45 $ rclone version --check 46 yours: 1.41 47 latest: 1.42 (released 2018-06-16) 48 upgrade: https://downloads.rclone.org/v1.42 49 beta: 1.42.0.5 (released 2018-06-17) 50 upgrade: https://beta.rclone.org/v1.42-005-g56e1e820 51 52 53 54 ``` 55 rclone version [flags] 56 ``` 57 58 ## Options 59 60 ``` 61 --check Check for new version 62 -h, --help help for version 63 ``` 64 65 66 See the [global flags page](/flags/) for global options not listed here. 67 68 # SEE ALSO 69 70 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 71