/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
cmd/cleanup/cleanup.go
32 строки
819 B
albertony
docs: fix markdown lint issues in command docs
26 авг 2025, 13:04
26 авг 2025, 13:04
2e02d49
Код
Авторство
О чём код?
// Package cleanup provides the cleanup command. 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.`, Annotations: map[string]string{ "versionIntroduced": "v1.31", "groups": "Important", }, 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) }) }, }