| Server IP : 68.183.124.220 / Your IP : 216.73.217.137 Web Server : Apache/2.4.18 (Ubuntu) System : Linux Sandbox-A 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : gavin ( 1000) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/bin/ |
Upload File : |
#!/bin/sh
# Alternative startup script for faster login times.
export _VIRTUALENVWRAPPER_API="$_VIRTUALENVWRAPPER_API mkvirtualenv rmvirtualenv lsvirtualenv showvirtualenv workon add2virtualenv cdsitepackages cdvirtualenv lssitepackages toggleglobalsitepackages cpvirtualenv setvirtualenvproject mkproject cdproject mktmpenv wipeenv allvirtualenv"
if [ -z "$VIRTUALENVWRAPPER_SCRIPT" ]
then
export VIRTUALENVWRAPPER_SCRIPT="$(command \which virtualenvwrapper.sh)"
fi
if [ -z "$VIRTUALENVWRAPPER_SCRIPT" ]
then
echo "ERROR: virtualenvwrapper_lazy.sh: Could not find virtualenvwrapper.sh" 1>&2
fi
# Load the real implementation of the API from virtualenvwrapper.sh
function virtualenvwrapper_load {
# Only source the script once.
# We might get called multiple times, because not all of _VIRTUALENVWRAPPER_API gets
# a real completion.
if [ -z $VIRTUALENVWRAPPER_LAZY_LOADED ]
then
# NOTE: For Zsh, I have tried to unset any auto-load completion.
# (via `compctl + $(echo ${_VIRTUALENVWRAPPER_API})`.
# But this does not appear to work / triggers a crash.
source "$VIRTUALENVWRAPPER_SCRIPT"
VIRTUALENVWRAPPER_LAZY_LOADED=1
fi
}
# Set up "alias" functions based on the API definition.
function virtualenvwrapper_setup_lazy_loader {
typeset venvw_name
for venvw_name in $(echo ${_VIRTUALENVWRAPPER_API})
do
eval "
function $venvw_name {
virtualenvwrapper_load
${venvw_name} \"\$@\"
}
"
done
}
# Set up completion functions to virtualenvwrapper_load
function virtualenvwrapper_setup_lazy_completion {
if [ -n "$BASH" ] ; then
function virtualenvwrapper_lazy_load {
virtualenvwrapper_load
return 124
}
complete -o nospace -F virtualenvwrapper_lazy_load $(echo ${_VIRTUALENVWRAPPER_API})
elif [ -n "$ZSH_VERSION" ] ; then
compctl -K virtualenvwrapper_load $(echo ${_VIRTUALENVWRAPPER_API})
fi
}
virtualenvwrapper_setup_lazy_loader
# Cannot be reset in zsh to fallback to files (e.g. mkvirtualenv).
virtualenvwrapper_setup_lazy_completion
unset virtualenvwrapper_setup_lazy_loader
unset virtualenvwrapper_setup_lazy_completion