hugo/docs/content/en/commands/hugo_completion_bash.md

66 lines
1.8 KiB
Markdown
Raw Normal View History

2021-08-03 09:55:02 +00:00
---
title: "hugo completion bash"
slug: hugo_completion_bash
url: /commands/hugo_completion_bash/
---
## hugo completion bash
2022-02-28 07:12:35 +00:00
Generate the autocompletion script for bash
2021-08-03 09:55:02 +00:00
### Synopsis
Generate the autocompletion script for the bash shell.
This script depends on the 'bash-completion' package.
If it is not installed already, you can install it via your OS's package manager.
To load completions in your current shell session:
2022-02-28 07:12:35 +00:00
source <(hugo completion bash)
2021-08-03 09:55:02 +00:00
To load completions for every new session, execute once:
2022-02-28 07:12:35 +00:00
#### Linux:
hugo completion bash > /etc/bash_completion.d/hugo
#### macOS:
hugo completion bash > /usr/local/etc/bash_completion.d/hugo
2021-08-03 09:55:02 +00:00
You will need to start a new shell for this setup to take effect.
2022-02-28 07:12:35 +00:00
2021-08-03 09:55:02 +00:00
```
hugo completion bash
```
### Options
```
-h, --help help for bash
--no-descriptions disable completion descriptions
```
### Options inherited from parent commands
```
--config string config file (default is path/config.yaml|json|toml)
--configDir string config dir (default "config")
--debug debug output
-e, --environment string build environment
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
--log enable Logging
--logFile string log File path (if set, logging enabled automatically)
--quiet build in quiet mode
-s, --source string filesystem path to read files relative from
--themesDir string filesystem path to themes directory
-v, --verbose verbose output
--verboseLog verbose logging
```
### SEE ALSO
2022-02-28 07:12:35 +00:00
* [hugo completion](/commands/hugo_completion/) - Generate the autocompletion script for the specified shell
2021-08-03 09:55:02 +00:00