/
githubmirror
/
rclone
Обзор
Документация
Войти
/
githubmirror
/
rclone
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
cmd/genautocomplete/genautocomplete.go
22 строки
569 B
albertony
docs: fix markdown lint issues in command docs
26 авг 2025, 13:04
26 авг 2025, 13:04
2e02d49
Код
Авторство
О чём код?
// Package genautocomplete provides the completion command. package genautocomplete import ( "github.com/rclone/rclone/cmd" "github.com/spf13/cobra" ) func init() { cmd.Root.AddCommand(completionDefinition) } var completionDefinition = &cobra.Command{ Use: "completion [shell]", Short: `Output completion script for a given shell.`, Long: `Generates a shell completion script for rclone. Run with ` + "`--help`" + ` to list the supported shells.`, Annotations: map[string]string{ "versionIntroduced": "v1.33", }, Aliases: []string{"genautocomplete"}, }