Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.64
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
.nvm /
test /
slow /
nvm exec /
Delete
Unzip
Name
Size
Permission
Date
Action
Preamble works and respects 'silent' flag
1.24
KB
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm exec --lts' should work
549
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm exec 0.x' should work
500
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm exec' should pick up .nvmrc version
506
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm exec' with help should not parse
206
B
-rw-rw-r--
2025-06-22 16:20
setup_dir
137
B
-rwxrwxr-x
2025-06-22 16:20
teardown_dir
175
B
-rwxrwxr-x
2025-06-22 16:20
Save
Rename
#!/bin/sh die () { echo "$@" ; exit 1; } \. ../../../nvm.sh nvm use 0.10 NPM_VERSION_TEN="$(npm --version)" NODE_VERSION_TEN="$(node --version)" nvm use 1.0.0 && [ "$(node --version)" = "v1.0.0" ] || die "\`nvm use\` failed!" NPM_VERSION_ONE="$(npm --version)" OUTPUT="$(nvm exec 0.10 npm --version)" EXPECTED_OUTPUT="Running node ${NODE_VERSION_TEN} (npm v${NPM_VERSION_TEN}) ${NPM_VERSION_TEN}" [ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "\`nvm exec\` failed to report node preamble; expected '$EXPECTED_OUTPUT', got '$OUTPUT'" OUTPUT="$(nvm exec --silent 0.10 npm --version | head -1)" EXPECTED_OUTPUT="${NPM_VERSION_TEN}" [ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "\`nvm exec --silent\` failed to node suppress preamble; expected '$EXPECTED_OUTPUT', got '$OUTPUT'" OUTPUT="$(nvm exec 1 npm --version)" EXPECTED_OUTPUT="Running io.js v1.0.0 (npm v${NPM_VERSION_ONE}) ${NPM_VERSION_ONE}" [ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "\`nvm exec\` failed to report io.js preamble; expected '$EXPECTED_OUTPUT', got '$OUTPUT'" OUTPUT="$(nvm exec --silent 1 npm --version | head -1)" EXPECTED_OUTPUT="${NPM_VERSION_ONE}" [ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "\`nvm exec --silent\` failed to suppress io.js preamble; expected '$EXPECTED_OUTPUT', got '$OUTPUT'"