mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
24 lines
542 B
Go
24 lines
542 B
Go
// Package genautocomplete provides the genautocomplete command.
|
|
package genautocomplete
|
|
|
|
import (
|
|
"github.com/rclone/rclone/cmd"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
cmd.Root.AddCommand(completionDefinition)
|
|
}
|
|
|
|
var completionDefinition = &cobra.Command{
|
|
Use: "genautocomplete [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",
|
|
},
|
|
}
|