HEX
Server: nginx/1.29.3
System: Linux 11979.bigscoots-wpo.com 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64
User: nginx (1068)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_open,proc_close,popen,show_source,cmd# Do not modify this line # 1684243876
Upload Files
File: //usr/share/bash-completion/completions/gnatmake
# Gnatmake completion                                      -*- shell-script -*-
# by [email protected] (Ralf Schroth)

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

    if [[ $cur == -* ]]; then
        # relevant (and less relevant ;-) )options completion
        COMPREPLY=($(compgen -W '-a -c -f -i -j -k -m -M -n -o -q -s -v -z
            -aL -A -aO -aI -I -I- -L -nostdinc -nostdlib -cargs -bargs -largs
            -fstack-check -fno-inline -g -O1 -O0 -O2 -O3 -gnata -gnatA -gnatb
            -gnatc -gnatd -gnatD -gnate -gnatE -gnatf -gnatF -gnatg -gnatG
            -gnath -gnati -gnatk -gnatl -gnatL -gnatm -gnatn -gnato -gnatO
            -gnatp -gnatP -gnatq -gnatR -gnats -gnatt -gnatT -gnatu -gnatU
            -gnatv -gnatws -gnatwe -gnatwl -gnatwu -gnatW -gnatx -gnatX -gnaty
            -gnatz -gnatZ -gnat83' -- "$cur"))
    else
        # source file completion
        _filedir '@(adb|ads)'
    fi
} &&
    complete -F _gnatmake gnatmake

# ex: filetype=sh