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