mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
Add rclone completion powershell - basic implementation only
This commit is contained in:
parent
fb6a9dfbf3
commit
a1d6bbd31f
44
cmd/genautocomplete/genautocomplete_powershell.go
Normal file
44
cmd/genautocomplete/genautocomplete_powershell.go
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
package genautocomplete
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"github.com/rclone/rclone/cmd"
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
completionDefinition.AddCommand(powershellCommandDefinition)
|
||||||
|
}
|
||||||
|
|
||||||
|
var powershellCommandDefinition = &cobra.Command{
|
||||||
|
Use: "powershell [output_file]",
|
||||||
|
Short: `Output powershell completion script for rclone.`,
|
||||||
|
Long: `
|
||||||
|
Generate the autocompletion script for powershell.
|
||||||
|
|
||||||
|
To load completions in your current shell session:
|
||||||
|
|
||||||
|
rclone completion powershell | Out-String | Invoke-Expression
|
||||||
|
|
||||||
|
To load completions for every new session, add the output of the above command
|
||||||
|
to your powershell profile.
|
||||||
|
|
||||||
|
If output_file is "-" or missing, then the output will be written to stdout.
|
||||||
|
`,
|
||||||
|
Run: func(command *cobra.Command, args []string) {
|
||||||
|
cmd.CheckArgs(0, 1, command, args)
|
||||||
|
if len(args) == 0 || (len(args) > 0 && args[0] == "-") {
|
||||||
|
err := cmd.Root.GenPowerShellCompletion(os.Stdout)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err := cmd.Root.GenPowerShellCompletionFile(args[0])
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user