• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1_nghttpd()
2{
3    local cur prev split=false
4    COMPREPLY=()
5    COMP_WORDBREAKS=${COMP_WORDBREAKS//=}
6
7    cmd=${COMP_WORDS[0]}
8    _get_comp_words_by_ref cur prev
9    case $cur in
10        -*)
11            COMPREPLY=( $( compgen -W '--htdocs --verbose --daemon --echo-upload --error-gzip --push --header-table-size --encoder-header-table-size --padding --hexdump --max-concurrent-streams --no-tls --connection-window-bits --mime-types-file --no-content-length --workers --version --color --early-response --dh-param-file --trailer --address --window-bits --verify-client --help ' -- "$cur" ) )
12            ;;
13        *)
14            _filedir
15            return 0
16    esac
17    return 0
18}
19complete -F _nghttpd nghttpd
20