Server : nginx/1.24.0 System : Linux ip-172-31-33-48 6.14.0-1011-aws #11~24.04.1-Ubuntu SMP Fri Aug 1 02:07:25 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE Directory : /usr/share/bash-completion/completions/ |
Upload File : |
# Apport bash-completion for apport-collect _apport-collect () { local cur prev COMPREPLY=() cur=`_get_cword` prev=${COMP_WORDS[COMP_CWORD-1]} case "$prev" in apport-collect) COMPREPLY=( $( compgen -W "-p --package --tag" -- $cur) ) ;; -p | --package) # list package names COMPREPLY=( $( apt-cache pkgnames $cur 2> /dev/null ) ) ;; --tag) # standalone parameter return 0 ;; *) # only complete -p/--package once if [[ "${COMP_WORDS[*]}" =~ .*\ -p.* || "${COMP_WORDS[*]}" =~ .*--package.* ]]; then COMPREPLY=( $( compgen -W "--tag" -- $cur) ) else COMPREPLY=( $( compgen -W "-p --package --tag" -- $cur) ) fi ;; esac } complete -F _apport-collect apport-collect