⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.97
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 :
~
/
usr
/
libexec
/
nodenv
/
Edit File: nodenv-exec
#!/usr/bin/env bash # # Summary: Run an executable with the selected Node version # # Usage: nodenv exec <command> [arg1 arg2...] # # Runs an executable by first preparing PATH so that the selected Node # version's `bin' directory is at the front. # # For example, if the currently selected Node version is 0.10.26: # nodenv exec bundle install # # is equivalent to: # PATH="$NODENV_ROOT/versions/0.10.26/bin:$PATH" bundle install set -e [ -n "$NODENV_DEBUG" ] && set -x # Provide nodenv completions if [ "$1" = "--complete" ]; then exec nodenv-shims --short fi NODENV_VERSION="$(nodenv-version-name)" NODENV_COMMAND="$1" if [ -z "$NODENV_COMMAND" ]; then nodenv-help --usage exec >&2 exit 1 fi export NODENV_VERSION NODENV_COMMAND_PATH="$(nodenv-which "$NODENV_COMMAND")" NODENV_BIN_PATH="${NODENV_COMMAND_PATH%/*}" OLDIFS="$IFS" IFS=$'\n' scripts=(`nodenv-hooks exec`) IFS="$OLDIFS" for script in "${scripts[@]}"; do source "$script" done shift 1 if [ "$NODENV_VERSION" != "system" ]; then export PATH="${NODENV_BIN_PATH}:${PATH}" fi exec -a "$NODENV_COMMAND" "$NODENV_COMMAND_PATH" "$@"
Simpan