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 : 52.14.125.137


Current Path : /snap/core/16928/usr/share/bash-completion/completions/
Upload File :
Current File : //snap/core/16928/usr/share/bash-completion/completions/gnatmake

# Gnatmake completion                                      -*- shell-script -*-
# by Ralf_Schroth@t-online.de (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: ts=4 sw=4 et filetype=sh