HEX
Server: Apache
System: Linux server.forfound.com 5.14.0-611.54.6.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 04:23:18 EDT 2026 x86_64
User: planetnewspro23 (1019)
PHP: 8.5.7
Disabled: NONE
Upload Files
File: //usr/share/bash-completion/completions/stunnel.bash
# bash completion for stunnel                              -*- shell-script -*-
# by Michal Trojnara 1998-2023

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

    local opt="-fd -help -version -sockets -options"

    case $prev in
        -fd | -help | -version | -sockets | -options)
            return
            ;;
    esac

    if [[ ${cur} == -* ]] ; then
        COMPREPLY=($(compgen -W "${opt}" -- ${cur}))
        return
    fi

    _filedir '@(cnf|conf)'
} &&
    complete -F _comp_cmd_stunnel stunnel

# ex: filetype=sh