<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 />
# bash complete completion                                 -*- shell-script -*-

_complete()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        -*o)
            COMPREPLY=($(compgen -W 'bashdefault default dirnames filenames
                nospace plusdirs' -- "$cur"))
            return
            ;;

        -*A)
            COMPREPLY=($(compgen -W 'alias arrayvar binding builtin command
                directory disabled enabled export file function group helptopic
                hostname job keyword running service setopt shopt signal
                stopped user variable' -- "$cur"))
            return
            ;;

        -*C)
            COMPREPLY=($(compgen -A command -- "$cur"))
            return
            ;;
        -*F)
            COMPREPLY=($(compgen -A function -- "$cur"))
            return
            ;;
        -*p | -*r)
            COMPREPLY=($(complete -p | command sed -e 's|.* ||'))
            COMPREPLY=($(compgen -W '${COMPREPLY[@]}' -- "$cur"))
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
       