rclone/cmd/genautocomplete/genautocomplete.go

25 lines
576 B
Go
Raw Normal View History

// Package genautocomplete provides the genautocomplete command.
package genautocomplete
import (
"github.com/rclone/rclone/cmd"
"github.com/spf13/cobra"
)
func init() {
2017-08-31 16:52:51 +02:00
cmd.Root.AddCommand(completionDefinition)
}
2017-08-31 16:52:51 +02:00
var completionDefinition = &cobra.Command{
Use: "completion [shell]",
2017-08-31 16:52:51 +02:00
Short: `Output completion script for a given shell.`,
Long: `
2017-08-31 16:52:51 +02:00
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"},
}