2023-08-02 10:58:42 +02:00
|
|
|
package genautocomplete
|
|
|
|
|
|
|
|
import (
|
2024-08-18 16:58:35 +02:00
|
|
|
"fmt"
|
2023-08-02 10:58:42 +02:00
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/rclone/rclone/cmd"
|
2024-08-18 16:58:35 +02:00
|
|
|
"github.com/rclone/rclone/fs"
|
2023-08-02 10:58:42 +02:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
completionDefinition.AddCommand(powershellCommandDefinition)
|
|
|
|
}
|
|
|
|
|
|
|
|
var powershellCommandDefinition = &cobra.Command{
|
|
|
|
Use: "powershell [output_file]",
|
|
|
|
Short: `Output powershell completion script for rclone.`,
|
2024-08-12 18:17:46 +02:00
|
|
|
Long: `Generate the autocompletion script for powershell.
|
2023-08-02 10:58:42 +02:00
|
|
|
|
|
|
|
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 {
|
2024-08-18 16:58:35 +02:00
|
|
|
fs.Fatal(nil, fmt.Sprint(err))
|
2023-08-02 10:58:42 +02:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err := cmd.Root.GenPowerShellCompletionFile(args[0])
|
|
|
|
if err != nil {
|
2024-08-18 16:58:35 +02:00
|
|
|
fs.Fatal(nil, fmt.Sprint(err))
|
2023-08-02 10:58:42 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|