Heray-Was-Here
Server : Apache
System : Linux vps43555.mylogin.co 3.10.0-1160.53.1.vz7.185.3 #1 SMP Tue Jan 25 12:49:12 MSK 2022 x86_64
User : redsea ( 60651)
PHP Version : 7.4.32
Disable Function : NONE
Directory :  /proc/2/root/proc/self/root/etc/bash_completion.d/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/2/root/proc/self/root/etc/bash_completion.d/rhsm-debug
#
# rhsm-debug bash completion script
# vim:ts=2:sw=2:et:

# common options
_rhsm_debug_common_opts="-h --help --proxy --proxyuser --proxypassword --noproxy"

# main complete function
_rhsm_debug()
{
  local cur="${COMP_WORDS[COMP_CWORD]}"
  local first="${COMP_WORDS[1]}"

  COMPREPLY=()

  case "${first}" in
    system)
        case "${cur}" in
            -*)
                local opts="--destination --no-archive
                            --sos ${_rhsm_debug_common_opts}"
                COMPREPLY=( $( compgen -W "${opts}" -- "$cur" ) )
                return 0
                ;;
        esac
            COMPREPLY=( $( compgen -o filenames -- "$cur" ) )
            return 0
            ;;
  esac

  COMPREPLY=($(compgen -W "system" -- ${cur}))
  return 0
}

complete -F _rhsm_debug -o default rhsm-debug

Hry