mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 08:22:09 +02:00
15 lines
413 B
Markdown
15 lines
413 B
Markdown
# complete
|
|
|
|
> Provides argument autocompletion to shell commands.
|
|
|
|
- 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}}`
|