mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
30 lines
667 B
Go
30 lines
667 B
Go
package cleanup
|
|
|
|
import (
|
|
"context"
|
|
|
|
"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: "cleanup remote:path",
|
|
Short: `Clean up the remote if possible.`,
|
|
Long: `
|
|
Clean up the remote if possible. Empty the trash or delete old file
|
|
versions. Not supported by all remotes.
|
|
`,
|
|
Run: func(command *cobra.Command, args []string) {
|
|
cmd.CheckArgs(1, 1, command, args)
|
|
fsrc := cmd.NewFsSrc(args)
|
|
cmd.Run(true, false, command, func() error {
|
|
return operations.CleanUp(context.Background(), fsrc)
|
|
})
|
|
},
|
|
}
|