Server IP : 51.89.169.208 / Your IP : 216.73.216.94 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/thread-self/root/proc/thread-self/root/usr/share/zsh/5.5.1/functions/ |
Upload File : |
#autoload # Utility function to call a function if it exists. # # Usage: _call_function <return> <name> [ <args> ... ] # # If a function named <name> is defined (or defined to be autoloaded), # it is called. If <return> is given not the string `-' or empty, it is # taken as the name of a parameter and the return status of the function # called is stored in this parameter. All other arguments are given # to the function called. # The return value of this function is zero if the function was # called and non-zero otherwise. local _name _ret [[ "$1" != (|-) ]] && _name="$1" shift if (( $+functions[$1] )); then "$@" _ret="$?" [[ -n "$_name" ]] && eval "${_name}=${_ret}" compstate[restore]='' return 0 fi return 1