| 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 : |
#autoload
# This sets the parameters _comp_command1, _comp_command2 and _comp_command
# in the calling function.
local command
command="$words[1]"
[[ -z "$command" ]] && return
if (( $+builtins[$command] + $+functions[$command] )); then
_comp_command1="$command"
_comp_command="$_comp_command1"
elif [[ "$command[1]" = '=' ]]; then
eval _comp_command2\=$command
_comp_command1="$command[2,-1]"
_comp_command="$_comp_command2"
elif [[ "$command" = ..#/* ]]; then
_comp_command1="${PWD}/$command"
_comp_command2="${command:t}"
_comp_command="$_comp_command2"
elif [[ "$command" = */* ]]; then
_comp_command1="$command"
_comp_command2="${command:t}"
_comp_command="$_comp_command2"
else
_comp_command1="$command"
_comp_command2="$commands[$command]"
_comp_command="$_comp_command1"
fi