Server IP : 51.89.169.208 / Your IP : 216.73.216.211 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) 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 : ON Directory : /proc/self/root/proc/thread-self/root/usr/share/zsh/5.5.1/functions/ |
Upload File : |
#compdef elfdump local -a args args=( '-c[dump section header information]' '-d[dump .dynamic section]' '-e[dump file header]' '-G[dump .got (global offset table) section]' '-h[dump .hash section]' '-i[dump .interp (interpreter) section]' '-n[dump .note sections]' '(-w)-p[dump program headers]' '-r[dump relocation sections]' '-s[dump symbol table sections]' '(-p)-w[write contents of matched sections to file]:file:_files' ) case $OSTYPE in solaris*) args+=( '-g[dump .group section]' '-H[dump .SUNW_cap (capabilities) section]' '-m[dump .SUNW_move section]' '-S[dump symbol table sections sorted according to symbol sort sections]' '-u[dump stack unwind/exceptions sections]' '-v[dump .SUNW_version (versioning) sections]' '-y[dump .SUNW_syminfo (symbol bindings) section]' '-I[match sections by index]:index or range' "-N[match sections by name]:section" '-T[match sections by type]:type' '-C[demangle C++ symbol names]' '-k[calculate ELF checksum]' '-l[show long section names without truncation]' '-O[specify osabi to apply]:osabi' '-P[use alternative section header]' "*:elf file:_object_files" ) ;; freebsd*) args+=( '-a[dump all information]' ) ;; esac _arguments -s $args