2017-05-30 20:26:06 +02:00
|
|
|
package dbhashsum
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/ncw/rclone/cmd"
|
2018-01-12 17:30:54 +01:00
|
|
|
"github.com/ncw/rclone/fs/operations"
|
2017-05-30 20:26:06 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmd.Root.AddCommand(commandDefintion)
|
|
|
|
}
|
|
|
|
|
|
|
|
var commandDefintion = &cobra.Command{
|
|
|
|
Use: "dbhashsum remote:path",
|
2017-12-03 08:38:59 +01:00
|
|
|
Short: `Produces a Dropbox hash file for all the objects in the path.`,
|
2017-05-30 20:26:06 +02:00
|
|
|
Long: `
|
|
|
|
Produces a Dropbox hash file for all the objects in the path. The
|
|
|
|
hashes are calculated according to [Dropbox content hash
|
|
|
|
rules](https://www.dropbox.com/developers/reference/content-hash).
|
|
|
|
The output is in the same format as md5sum and sha1sum.
|
|
|
|
`,
|
|
|
|
Run: func(command *cobra.Command, args []string) {
|
|
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
|
|
fsrc := cmd.NewFsSrc(args)
|
|
|
|
cmd.Run(false, false, command, func() error {
|
2018-01-12 17:30:54 +01:00
|
|
|
return operations.DropboxHashSum(fsrc, os.Stdout)
|
2017-05-30 20:26:06 +02:00
|
|
|
})
|
|
|
|
},
|
|
|
|
}
|