<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 />
# pgrep(1) and pkill(1) completion                         -*- shell-script -*-

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

    case $prev in
        --delimiter|--pgroup|--session|--terminal|-!(-*)[cdgJMNstTz])
            return
            ;;
        --signal)
            _signals
            return
            ;;
        --pidfile|-!(-*)F)
            _filedir
            return
            ;;
        --group|-!(-*)G)
            _gids
            return
            ;;
        -j)
            COMPREPLY=( $(compgen -W 'any none' -- "$cur") )
            return
            ;;
        --parent|-!(-*)P)
            _pids
            return
            ;;
        --euid|--uid|-!(-*)[uU])
            _uids
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        local help=$(_parse_help "$1")
        [[