Server IP : 127.0.0.2 / Your IP : 3.16.31.119 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/bash-completion/completions/ |
Upload File : |
# bash completion for (Debian) reportbug -*- shell-script -*- _reportbug() { local cur prev words cword _init_completion || return case $prev in -f|--filename|-i|--include|--mta|-o|--output) _filedir return 0 ;; -B|--bts) COMPREPLY=( $( compgen -W "debian guug kde mandrake help" -- \ "$cur" ) ) return 0 ;; -e|--editor|--mua) words=( words[0] "$cur" ) cword=1 _command return 0 ;; --mode) COMPREPLY=( $( compgen -W "novice standard expert" -- "$cur" ) ) return 0 ;; -S|--severity) COMPREPLY=( $( compgen -W "grave serious important normal minor wishlist" -- "$cur" ) ) return 0 ;; -u|--ui|--interface) COMPREPLY=( $( compgen -W "newt text gnome" -- "$cur" ) ) return 0 ;; -t|--type) COMPREPLY=( $( compgen -W "gnats debbugs" -- "$cur" ) ) return 0 ;; -T|--tag) COMPREPLY=( $( compgen -W "none woody potato sarge sarge-ignore etch etch-ignore lenny lenny-ignore sid experimental confirmed d-i fixed fixed-in-experimental fixed-upstream help l10n moreinfo patch pending security unreproducible upstream wontfix ipv6 lfs" -- "$cur" ) ) return 0 ;; --from-buildd) COMPREPLY=( $( compgen -S "_" -W '$( apt-cache dumpavail | \ command grep "^Source: $cur" | sort -u | cut -f2 -d" " )' )) return 0 ;; *) ;; esac COMPREPLY=($( compgen -W '--help --version --attach --no-query-bts --query-bts --bts --body --body-file --bodyfile --no-config-files --class --configure --check-available --debug --no-check-available --debconf --test --draftpath --editor --email --exit-prompt --filename --from-buildd --gnupg --gpg --path --gnus --header --include --no-check-installed --check-installed --justification --kudos --keyid --license --list-cc --maintonly --mirror --mode --mua --mta --mutt --mh --nmh --bugnumber --no-bug-script --no-cc-menu --output --offline --print --paranoid --no-paranoid --pgp --proxy --http_proxy --pseudo-header --quiet --query-only --query-source --no-query-source --realname --report-quiet --reply-to --replyto --subject --severity --smtphost --timeout --tls --smtpuser --smtppasswd --src --source --type --tag --template --verify --no-verify --no-cc --package-version --no-compress --ui --interface wnpp boot-floppies kernel bugs.debian.org cdimage.debian.org general installation-reports listarchives lists.debian.org mirrors nm.debian.org press project qa.debian.org release-notes security.debian.org tech-ctte upgrade-reports www.debian.org' \ -- "$cur" ) $( apt-cache pkgnames -- "$cur" 2> /dev/null ) ) _filedir return 0 } && complete -F _reportbug reportbug # ex: ts=4 sw=4 et filetype=sh