
complete
List of commands for complete:
-
complete:ai:ae7ac Generate completions for the 'forrest' command$ complete -c forrest -x -atry on your machineexplain this command
-
complete:tldr:5e6d6 complete: Apply a command that performs autocompletion to another command.$ complete -C ${autocomplete_command} ${command}try on your machineexplain this command
-
complete:tldr:a9c6b complete: Apply a function that performs autocompletion to a command.$ complete -F ${function} ${command}try on your machineexplain this command
-
complete:tldr:c5676 complete: Apply autocompletion without appending a space to the completed word.$ complete -o nospace -F ${function} ${command}try on your machineexplain this command