1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-06 00:03:32 +00:00

Version v1.63.0

This commit is contained in:
Nick Craig-Wood
2023-06-30 14:11:17 +01:00
parent 42c211c6b2
commit e90537b2e9
47 changed files with 11353 additions and 4695 deletions

View File

@@ -1,43 +1,48 @@
---
title: "rclone completion fish"
description: "Generate the autocompletion script for fish"
description: "Output fish completion script for rclone."
slug: rclone_completion_fish
url: /commands/rclone_completion_fish/
# autogenerated - DO NOT EDIT, instead edit the source code in cmd/completion/fish/ and as part of making a release run "make commanddocs"
---
# rclone completion fish
Generate the autocompletion script for fish
Output fish completion script for rclone.
## Synopsis
Generate the autocompletion script for the fish shell.
To load completions in your current shell session:
Generates a fish autocompletion script for rclone.
rclone completion fish | source
This writes to /etc/fish/completions/rclone.fish by default so will
probably need to be run with sudo or as root, e.g.
To load completions for every new session, execute once:
sudo rclone genautocomplete fish
rclone completion fish > ~/.config/fish/completions/rclone.fish
Logout and login again to use the autocompletion scripts, or source
them directly
You will need to start a new shell for this setup to take effect.
. /etc/fish/completions/rclone.fish
If you supply a command line argument the script will be written
there.
If output_file is "-", then the output will be written to stdout.
```
rclone completion fish [flags]
rclone completion fish [output_file] [flags]
```
## Options
```
-h, --help help for fish
--no-descriptions disable completion descriptions
-h, --help help for fish
```
See the [global flags page](/flags/) for global options not listed here.
## SEE ALSO
* [rclone completion](/commands/rclone_completion/) - Generate the autocompletion script for the specified shell
* [rclone completion](/commands/rclone_completion/) - Output completion script for a given shell.