mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-23 13:51:44 +00:00
Update cheatsheets
This commit is contained in:
21
complete
Normal file
21
complete
Normal file
@@ -0,0 +1,21 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# complete
|
||||
|
||||
> Provides 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}}`
|
||||
Reference in New Issue
Block a user