| Command | Beschreibung |
|---|
help complete | Hilfe anzeigen |
complete -p | Alle Bash-Completions anzeigen |
complete -F <function> <commands...> | Apply a function that performs autocompletion to a command |
complete -W "Option1 Option2 Option3" <commands...> | fixe Werte vorschlagen |
complete -a <commands...> | Aliases (alias) für command vorschlagen |
complete -v <commands...> | (shell-)Variablenname für command vorschlagen |
complete -u <commands...> | Users für command vorschlagen |
complete -C <autocomplete_command> <commands...> | Apply a command that performs autocompletion to another command |
complete -c <commands...> | Commands für command vorschlagen |
complete -b builtin <commands...> | Built-Ins für command vorschlagen |
complete -A helptopic <commands...> | Helptopics wie 'complete' für command vorschlagen |
complete -A setopt <commands...> | Settings für command vorschlagen |
complete -A shopt <commands...> | Optionen für command vorschlagen |
complete -A stopped -P '"%' -S '"' <commands...> | Stopped jobs/processes für command vorschlagen |
complete -j -P '"%' -S '"' <commands...> | andere jobs für command vorschlagen |