Skip to content

Commit

Permalink
Refactor: Write to stdout by default
Browse files Browse the repository at this point in the history
  • Loading branch information
benmezger authored and anthonyfok committed Feb 4, 2021
1 parent d204bf1 commit e507721
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions content/en/commands/hugo_gen_autocomplete.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ Generate shell autocompletion script for Hugo

Generates a shell autocompletion script for Hugo.

By default, the file is written directly to /etc/bash_completion.d
By default, the file is written directly to `stdout`
for convenience, and the command may need superuser rights, e.g.:

$ sudo hugo gen autocomplete
$ sudo hugo gen autocomplete

Add `--completionfile=/path/to/file` flag to set alternative
file-path and name.
Expand All @@ -26,7 +26,7 @@ shell type.
Logout and in again to reload the completion scripts,
or just source them in directly:

$ . /etc/bash_completion or /path/to/file
$ . /path/to/file

```
hugo gen autocomplete [flags]
Expand All @@ -35,7 +35,7 @@ hugo gen autocomplete [flags]
### Options

```
--completionfile string autocompletion file (default "/etc/bash_completion.d/hugo.sh")
--completionfile string autocompletion file (defaults to stdout)
-h, --help help for autocomplete
--type string autocompletion type (zsh, bash or fish) (default "bash")
```
Expand All @@ -60,6 +60,6 @@ hugo gen autocomplete [flags]

### SEE ALSO

* [hugo gen](/commands/hugo_gen/) - A collection of several useful generators.
- [hugo gen](/commands/hugo_gen/) - A collection of several useful generators.

###### Auto generated by spf13/cobra on 6-Jan-2021

0 comments on commit e507721

Please sign in to comment.