overdue
This commit is contained in:
19
.rclone_repo/cmd/genautocomplete/genautocomplete.go
Executable file
19
.rclone_repo/cmd/genautocomplete/genautocomplete.go
Executable file
@@ -0,0 +1,19 @@
|
||||
package genautocomplete
|
||||
|
||||
import (
|
||||
"github.com/ncw/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.
|
||||
`,
|
||||
}
|
||||
Reference in New Issue
Block a user