github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/docs/content/commands/rclone_cryptcheck.md (about) 1 --- 2 title: "rclone cryptcheck" 3 description: "Cryptcheck checks the integrity of a crypted remote." 4 slug: rclone_cryptcheck 5 url: /commands/rclone_cryptcheck/ 6 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/cryptcheck/ and as part of making a release run "make commanddocs" 7 --- 8 # rclone cryptcheck 9 10 Cryptcheck checks the integrity of a crypted remote. 11 12 ## Synopsis 13 14 15 rclone cryptcheck checks a remote against a crypted remote. This is 16 the equivalent of running rclone check, but able to check the 17 checksums of the crypted remote. 18 19 For it to work the underlying remote of the cryptedremote must support 20 some kind of checksum. 21 22 It works by reading the nonce from each file on the cryptedremote: and 23 using that to encrypt each file on the remote:. It then checks the 24 checksum of the underlying file on the cryptedremote: against the 25 checksum of the file it has just encrypted. 26 27 Use it like this 28 29 rclone cryptcheck /path/to/files encryptedremote:path 30 31 You can use it like this also, but that will involve downloading all 32 the files in remote:path. 33 34 rclone cryptcheck remote:path encryptedremote:path 35 36 After it has run it will log the status of the encryptedremote:. 37 38 If you supply the --one-way flag, it will only check that files in source 39 match the files in destination, not the other way around. Meaning extra files in 40 destination that are not in the source will not trigger an error. 41 42 43 ``` 44 rclone cryptcheck remote:path cryptedremote:path [flags] 45 ``` 46 47 ## Options 48 49 ``` 50 -h, --help help for cryptcheck 51 --one-way Check one way only, source files must exist on destination 52 ``` 53 54 See the [global flags page](/flags/) for global options not listed here. 55 56 ## SEE ALSO 57 58 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 59