Files
cheatsheet-tldr/tldr/complete
2025-03-27 00:18:38 +00:00

22 lines
628 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# complete
> Get argument autocompletion to shell commands.
> More information: <https://www.gnu.org/software/bash/manual/html_node/Programmable-Completion-Builtins.html#index-complete>.
- 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}}`