1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/complete.md

17 lines
535 B
Markdown
Raw Normal View History

2018-06-11 12:19:27 -07:00
# complete
> Get argument autocompletion to shell commands.
> More information: <https://www.gnu.org/software/bash/manual/html_node/Programmable-Completion-Builtins.html#index-complete>.
2018-06-11 12:19:27 -07:00
- Apply a function that performs autocompletion to a command:
`complete -F {{function}} {{command}}`
- Apply a command that performs autocompletion to another command:
`complete -C {{autocomplete_command}} {{command}}`
- Apply autocompletion without appending a space to the completed word:
`complete -o nospace -F {{function}} {{command}}`