| Server IP : 199.250.200.62 / Your IP : 216.73.217.89 Web Server : Apache System : Linux vps37394.inmotionhosting.com 3.10.0-1160.119.1.vz7.224.4 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : jasonp18 ( 1000) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /usr/share/zsh/5.0.2/functions/ |
Upload File : |
#compdef ldd
if _pick_variant gnu='(GNU|EGLIBC)' solaris --version; then
args=(
'(- *)--version[display version information]'
'(- *)--help[display help information]'
'(-v --verbose)'{-v,--verbose}'[include symbol versioning information]'
'(-d --data-relocs)'{-d,--data-relocs}'[perform data relocations and report missing objects]'
'(-r --function-relocs)'{-r,--function-relocs}'[perform data/function relocations and report missing objects]'
'(-u --unused)'{-u,--unused}'[display any unused objects]'
)
else
args=(
-s
'(-r)-d[check immediate references]'
'(-d)-r[check immediate and lazy references]'
'-u[display any unused objects]'
'-U[display any unreferenced, or unused dependencies]'
'-e[set specified environment variable]:environment variable:(LD_PRELOAD LD_LIBRARY_PATH LD_RUN_PATH LD_DEBUG LD_DEBUG_OUTPUT LD_NOCONFIG LD_NOAUXFLTR)'
'-f[check for insecure executable]'
'-i[display order of execution of initialization sections]'
'-L[enable lazy loading]'
'-l[force immediate processing of any filters]'
'-s[display search path used]'
'-v[displays all dependency relationships]'
)
fi
_arguments $args \
'*: : _alternative
"executables:executable:_files -g \^\*.so\(\-\*\)"
"shared-objects:shared object:_files -g \*.so\(-.\)"'