tldr/pages/common/complete.md
Vítor Henrique 5edbf734fb
pages*: improve page descriptions (#12558)
* pages*: improve page descriptions

* ical: improve page description

* cockpit-desktop: remove unneeded word from page description

* nc: improve description wording

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-04-25 19:58:21 -03:00

520 B

complete

Get argument autocompletion to shell commands. More information: https://www.gnu.org/software/bash/manual/html_node/Programmable-Completion-Builtins.html.

  • 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}}