rclone/cmd/genautocomplete/genautocomplete.go

21 lines
473 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 14:52:51 +00:00
cmd.Root.AddCommand(completionDefinition)
}
2017-08-31 14:52:51 +00:00
var completionDefinition = &cobra.Command{
Use: "genautocomplete [shell]",
Short: `Output completion script for a given shell.`,
Long: `
2017-08-31 14:52:51 +00:00
Generates a shell completion script for rclone.
Run with ` + "`--help`" + ` to list the supported shells.
`,
}