0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.221.116.226


Current Path : /snap/core22/current/usr/share/bash-completion/completions/
Upload File :
Current File : //snap/core22/current/usr/share/bash-completion/completions/javaws

# javaws(1) completion                                     -*- shell-script -*-

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

    case $prev in
        -help | -license | -about | -viewer | -arg | -param | -property | -update | -umask)
            return
            ;;
        -basedir | -codebase)
            _filedir -d
            return
            ;;
        -uninstall | -import)
            _filedir jnlp
            return
            ;;
    esac

    if [[ $cur == *= ]]; then
        return
    elif [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W "$(_parse_help "$1" -help) " -- "$cur"))
        [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
        return
    fi

    _filedir jnlp
} &&
    complete -F _javaws javaws

# ex: filetype=sh