LinuxCommandLibrary

complete

complete

TLDR

Apply a function that performs autocompletion to a command

$ complete -F [function] [command]
copy


Apply a command that performs autocompletion to another command
$ complete -C [autocomplete_command] [command]
copy


Apply autocompletion without appending a space to the completed word
$ complete -o nospace -F [function] [command]
copy

Copied to clipboard