Added useful info for setting up bash autocompletion. (#384)

This commit is contained in:
Apurva Chitnis 2017-01-18 18:55:16 +00:00 committed by Eric Paris
parent 1dd5ff2e11
commit dc208f4211

View file

@ -18,7 +18,7 @@ func main() {
}
```
That will get you completions of subcommands and flags. If you make additional annotations to your code, you can get even more intelligent and flexible behavior.
`out.sh` will get you completions of subcommands and flags. Copy it to `/etc/bash_completion.d/` as described [here](https://debian-administration.org/article/316/An_introduction_to_bash_completion_part_1) and reset your terminal to use autocompletion. If you make additional annotations to your code, you can get even more intelligent and flexible behavior.
## Creating your own custom functions