2016-08-03 22:36:28 +02:00
|
|
|
---
|
|
|
|
title: "rclone version"
|
2020-05-16 16:11:55 +02:00
|
|
|
description: "Show the version number."
|
2016-08-03 22:36:28 +02:00
|
|
|
slug: rclone_version
|
|
|
|
url: /commands/rclone_version/
|
2020-02-10 13:31:45 +01:00
|
|
|
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/version/ and as part of making a release run "make commanddocs"
|
2016-08-03 22:36:28 +02:00
|
|
|
---
|
2020-05-22 12:17:37 +02:00
|
|
|
# rclone version
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
Show the version number.
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## Synopsis
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2018-09-01 13:58:00 +02:00
|
|
|
|
2021-06-08 17:57:04 +02:00
|
|
|
Show the rclone version number, the go version, the build target
|
|
|
|
OS and architecture, the runtime OS and kernel version and bitness,
|
|
|
|
build tags and the type of executable (static or dynamic).
|
2018-09-01 13:58:00 +02:00
|
|
|
|
2021-03-31 20:12:08 +02:00
|
|
|
For example:
|
2018-09-01 13:58:00 +02:00
|
|
|
|
|
|
|
$ rclone version
|
2021-06-08 17:57:04 +02:00
|
|
|
rclone v1.55.0
|
|
|
|
- os/version: ubuntu 18.04 (64 bit)
|
|
|
|
- os/kernel: 4.15.0-136-generic (x86_64)
|
2021-03-31 20:12:08 +02:00
|
|
|
- os/type: linux
|
|
|
|
- os/arch: amd64
|
|
|
|
- go/version: go1.16
|
|
|
|
- go/linking: static
|
|
|
|
- go/tags: none
|
|
|
|
|
|
|
|
Note: before rclone version 1.55 the os/type and os/arch lines were merged,
|
|
|
|
and the "go/version" line was tagged as "go version".
|
2018-09-01 13:58:00 +02:00
|
|
|
|
|
|
|
If you supply the --check flag, then it will do an online check to
|
|
|
|
compare your version with the latest release and the latest beta.
|
|
|
|
|
|
|
|
$ rclone version --check
|
|
|
|
yours: 1.42.0.6
|
|
|
|
latest: 1.42 (released 2018-06-16)
|
|
|
|
beta: 1.42.0.5 (released 2018-06-17)
|
|
|
|
|
|
|
|
Or
|
|
|
|
|
|
|
|
$ rclone version --check
|
|
|
|
yours: 1.41
|
|
|
|
latest: 1.42 (released 2018-06-16)
|
|
|
|
upgrade: https://downloads.rclone.org/v1.42
|
|
|
|
beta: 1.42.0.5 (released 2018-06-17)
|
|
|
|
upgrade: https://beta.rclone.org/v1.42-005-g56e1e820
|
|
|
|
|
|
|
|
|
2016-08-03 22:36:28 +02:00
|
|
|
|
|
|
|
```
|
2017-09-30 15:19:47 +02:00
|
|
|
rclone version [flags]
|
|
|
|
```
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## Options
|
2017-09-30 15:19:47 +02:00
|
|
|
|
|
|
|
```
|
2018-09-01 13:58:00 +02:00
|
|
|
--check Check for new version.
|
|
|
|
-h, --help help for version
|
2016-08-03 22:36:28 +02:00
|
|
|
```
|
|
|
|
|
2019-06-20 17:18:02 +02:00
|
|
|
See the [global flags page](/flags/) for global options not listed here.
|
|
|
|
|
2020-05-22 12:17:37 +02:00
|
|
|
## SEE ALSO
|
2016-08-03 22:36:28 +02:00
|
|
|
|
2018-10-15 12:03:08 +02:00
|
|
|
* [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends.
|
2018-03-19 11:06:13 +01:00
|
|
|
|