Server IP : 127.0.0.2 / Your IP : 13.59.1.209 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 slackpkg(8) -*- shell-script -*- # options list is based on `grep '\-.*\=.*)' /usr/sbin/slackpkg | cut -f1 -d\)` _slackpkg() { local cur prev words cword _init_completion -n = || return local split=false if [[ "$cur" == -?*=* ]]; then prev="${cur%%?(\\)=*}" cur="${cur#*=}" split=true fi case "$prev" in -delall|-checkmd5|-checkgpg|-checksize|-postinst|-onoff|-download_all|\ -dialog|-batch|-only_new_dotnew|-use_includes|-spinning) COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) ) return ;; -default_answer) COMPREPLY=( $( compgen -W 'yes no' -- "$cur" ) ) return ;; -dialog_maxargs|-mirror) # argument required but no completions available return ;; esac $split && return if [[ "$cur" == -* ]]; then compopt -o nospace COMPREPLY=( $( compgen -W '-delall= -checkmd5= -checkgpg= -checksize= -postinst= -onoff= -download_all= -dialog= -dialog_maxargs= -batch= -only_new_dotnew= -use_includes= -spinning= -default_answer= -mirror=' -- "$cur" ) ) return fi local confdir="/etc/slackpkg" local config="$confdir/slackpkg.conf" [[ -r "$config" ]] || return . "$config" local i action for (( i=1; i<${#words[@]}; i++ )); do if [[ "${words[i]}" != -* ]]; then action="${words[i]}" break fi done case "$action" in generate-template|search|file-search) # argument required but no completions available return ;; install-template|remove-template) if [[ -e $confdir/templates ]]; then COMPREPLY=( $( cd "$confdir/templates"; \ compgen -f -X "!*.template" -- "$cur" ) ) COMPREPLY=( ${COMPREPLY[@]%.template} ) fi return ;; remove) _filedir COMPREPLY+=( $( compgen -W 'a ap d e f k kde kdei l n t tcl x xap xfce y' -- "$cur" ) ) COMPREPLY+=( $( cd /var/log/packages; compgen -f -- "$cur" ) ) return ;; install|reinstall|upgrade|blacklist|download) _filedir COMPREPLY+=( $( compgen -W 'a ap d e f k kde kdei l n t tcl x xap xfce y' -- "$cur" ) ) COMPREPLY+=( $( cut -f 6 -d\ "${WORKDIR}/pkglist" 2> /dev/null | \ grep "^$cur" ) ) return ;; info) COMPREPLY=( $( cut -f 6 -d\ "${WORKDIR}/pkglist" 2> /dev/null | \ grep "^$cur" ) ) return ;; update) # we should complete the same as the next `list` + "gpg" COMPREPLY=( $( compgen -W 'gpg' -- "$cur" ) ) ;& *) COMPREPLY+=( $( compgen -W 'install reinstall upgrade remove blacklist download update install-new upgrade-all clean-system new-config check-updates help generate-template install-template remove-template search file-search info' -- \ "$cur" ) ) return ;; esac } && complete -F _slackpkg slackpkg # ex: ts=4 sw=4 et filetype=sh