github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/docs/content/commands/rclone_cryptcheck.md (about) 1 --- 2 date: 2019-06-20T16:09:42+01:00 3 title: "rclone cryptcheck" 4 slug: rclone_cryptcheck 5 url: /commands/rclone_cryptcheck/ 6 --- 7 ## rclone cryptcheck 8 9 Cryptcheck checks the integrity of a crypted remote. 10 11 ### Synopsis 12 13 14 rclone cryptcheck checks a remote against a crypted remote. This is 15 the equivalent of running rclone check, but able to check the 16 checksums of the crypted remote. 17 18 For it to work the underlying remote of the cryptedremote must support 19 some kind of checksum. 20 21 It works by reading the nonce from each file on the cryptedremote: and 22 using that to encrypt each file on the remote:. It then checks the 23 checksum of the underlying file on the cryptedremote: against the 24 checksum of the file it has just encrypted. 25 26 Use it like this 27 28 rclone cryptcheck /path/to/files encryptedremote:path 29 30 You can use it like this also, but that will involve downloading all 31 the files in remote:path. 32 33 rclone cryptcheck remote:path encryptedremote:path 34 35 After it has run it will log the status of the encryptedremote:. 36 37 If you supply the --one-way flag, it will only check that files in source 38 match the files in destination, not the other way around. Meaning extra files in 39 destination that are not in the source will not trigger an error. 40 41 42 ``` 43 rclone cryptcheck remote:path cryptedremote:path [flags] 44 ``` 45 46 ### Options 47 48 ``` 49 -h, --help help for cryptcheck 50 --one-way Check one way only, source files must exist on destination 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