rclone/cmd/genautocomplete/genautocomplete.go

20 lines
393 B
Go
Raw Normal View History

package genautocomplete
import (
"github.com/ncw/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: "genautocomplete [shell]",
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.
`,
}