⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
opt
/
plesk
/
phpenv
/
libexec
/
View File Name :
phpenv-init
#!/usr/bin/env bash # Summary: Configure the shell environment for phpenv # Usage: eval "$(phpenv init - [--no-rehash] [
])" set -e [ -n "$PHPENV_DEBUG" ] && set -x print="" no_rehash="" for args in "$@" do if [ "$args" = "-" ]; then print=1 shift fi if [ "$args" = "--no-rehash" ]; then no_rehash=1 shift fi done shell="$1" if [ -z "$shell" ]; then shell="$(basename "$SHELL")" fi resolve_link() { $(type -p greadlink readlink | head -1) $1 } abs_dirname() { local cwd="$(pwd)" local path="$1" while [ -n "$path" ]; do cd "${path%/*}" local name="${path##*/}" path="$(resolve_link "$name" || true)" done pwd cd "$cwd" } root="$(abs_dirname "$0")/.." if [ -z "$print" ]; then case "$shell" in bash ) profile='~/.bash_profile' ;; zsh ) profile='~/.zshrc' ;; ksh ) profile='~/.profile' ;; fish ) profile='~/.config/fish/config.fish' ;; * ) profile='your profile' ;; esac { echo "# Load phpenv automatically by adding" echo "# the following to ${profile}:" echo case "$shell" in fish ) echo 'status --is-interactive; and source (phpenv init -|psub)' ;; * ) echo 'eval "$(phpenv init -)"' ;; esac echo } >&2 exit 1 fi mkdir -p "${PHPENV_ROOT}/"{shims,versions} case "$shell" in fish ) echo "set -gx PATH '${PHPENV_ROOT}/shims' \$PATH" ;; * ) echo 'export PATH="'${PHPENV_ROOT}'/shims:${PATH}"' ;; esac case "$shell" in bash | zsh | fish ) echo "source \"$root/completions/phpenv.${shell}\"" ;; esac if [ -z "$no_rehash" ]; then echo 'phpenv rehash 2>/dev/null' fi commands=(`phpenv-commands --sh`) case "$shell" in fish ) cat <