mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 04:00:17 +08:00
31 lines
720 B
Go
31 lines
720 B
Go
package md5sum
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"github.com/rclone/rclone/cmd"
|
|
"github.com/rclone/rclone/fs/operations"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Root.AddCommand(commandDefinition)
|
|
}
|
|
|
|
var commandDefinition = &cobra.Command{
|
|
Use: "md5sum remote:path",
|
|
Short: `Produces an md5sum file for all the objects in the path.`,
|
|
Long: `
|
|
Produces an md5sum file for all the objects in the path. This
|
|
is in the same format as the standard md5sum tool produces.
|
|
`,
|
|
Run: func(command *cobra.Command, args []string) {
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
fsrc := cmd.NewFsSrc(args)
|
|
cmd.Run(false, false, command, func() error {
|
|
return operations.Md5sum(context.Background(), fsrc, os.Stdout)
|
|
})
|
|
},
|
|
}
|