github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/docs/content/commands/rclone_hashsum.md (about) 1 --- 2 title: "rclone hashsum" 3 description: "Produces a hashsum file for all the objects in the path." 4 slug: rclone_hashsum 5 url: /commands/rclone_hashsum/ 6 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/hashsum/ and as part of making a release run "make commanddocs" 7 --- 8 # rclone hashsum 9 10 Produces a hashsum file for all the objects in the path. 11 12 ## Synopsis 13 14 15 Produces a hash file for all the objects in the path using the hash 16 named. The output is in the same format as the standard 17 md5sum/sha1sum tool. 18 19 Run without a hash to see the list of supported hashes, eg 20 21 $ rclone hashsum 22 Supported hashes are: 23 * MD5 24 * SHA-1 25 * DropboxHash 26 * QuickXorHash 27 28 Then 29 30 $ rclone hashsum MD5 remote:path 31 32 33 ``` 34 rclone hashsum <hash> remote:path [flags] 35 ``` 36 37 ## Options 38 39 ``` 40 --base64 Output base64 encoded hashsum 41 -h, --help help for hashsum 42 ``` 43 44 See the [global flags page](/flags/) for global options not listed here. 45 46 ## SEE ALSO 47 48 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 49