<META NAME="robots" CONTENT="noindex,nofollow">


<br />
<b>Warning</b>:  file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
 in <b>/home/familylifersmpc/htdocs/www.familylifersmpc.com/index.php</b> on line <b>91</b><br />
# dot(1) completion                                        -*- shell-script -*-

_dot()
{
    local cur prev words cword
    _init_completion -n := || return

    [[ $prev == -[V?] ]] && return

    case $cur in
        -G*|-N*|-E*|-l?*|-q?*|-s?*|-Ln*|-LU*|-LC*|-LT*)
            return
            ;;
        -T*)
            local langs=( $("$1" -TNON_EXISTENT 2>&1 | \
                command sed -ne 's/.*one of://p') )
            COMPREPLY=( $(compgen -P -T -W '${langs[@]}' -- "${cur#-T}") )
            return
            ;;
        -K*)
            local layouts=( $("$1" -KNON_EXISTENT 2>&1 | \
                command sed -ne 's/.*one of://p') )
            COMPREPLY=( $(compgen -P -K -W '${layouts[@]}' -- "${cur#-K}") )
            return
            ;;
        -o*)
            cur=${cur#-o}
            _filedir
            COMPREPLY=( $(compgen -P -o -W '${COMPREPLY[@]}' -- "$cur") )
            return
            ;;
   