HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: //usr/share/bash-completion/completions/sysctl
# bash completion for sysctl                               -*- shell-script -*-

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

    case $prev in
        --help | --version | --pattern | -!(-*)[hVr])
            return
            ;;
        --load | -!(-*)[pf])
            _filedir conf
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        local opts="$(_parse_help "$1")"
        COMPREPLY=($(compgen -W '${opts:-$(_parse_usage "$1")}' -- "$cur"))
    else
        local suffix=
        [[ $prev == -w ]] && suffix="="
        COMPREPLY=($(compgen -S "$suffix" -W \
            "$(PATH="$PATH:/sbin" $1 -N -a 2>/dev/null)" -- "$cur"))
        [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
    fi
} &&
    complete -F _sysctl sysctl

# ex: filetype=sh