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.69
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 use /
Delete
Unzip
Name
Size
Permission
Date
Action
Running 'nvm use --lts' uses latest LTS version
567
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm use --lts=foo' uses latest 'foo' LTS version
613
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm use iojs' uses latest io.js version
536
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm use node --silent' doesn't print anything
338
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm use node' uses latest stable node version
546
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm use v1.0.0' uses iojs-v1.0.0 iojs version
560
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm use' calls 'nvm_die_on_prefix'
642
B
-rwxrwxr-x
2025-06-22 16:20
Running 'nvm use' with nvmrc containing not installed version
881
B
-rw-rw-r--
2025-06-22 16:20
setup_dir
530
B
-rwxrwxr-x
2025-06-22 16:20
teardown_dir
519
B
-rwxrwxr-x
2025-06-22 16:20
Save
Rename
#!/bin/sh die () { echo "$@" ; exit 1; } \. ../../../nvm.sh nvm deactivate 2>&1 >/dev/null || die 'deactivate failed' echo "foo" > .nvmrc # running nvm use with .nvmrc should not print the version information OUTPUT="$(nvm use 2>&1)" EXIT_CODE=$? EXPECTED_OUTPUT="Found '$PWD/.nvmrc' with version <foo> N/A: version \"foo\" is not yet installed. You need to run \`nvm install\` to install and use the node version specified in \`.nvmrc\`." [ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] || die "expected 'nvm use' with nvmrc to give $EXPECTED_OUTPUT, got $OUTPUT" [ "_$EXIT_CODE" = "_3" ] || die "expected 'nvm use' with nvmrc to exit with 3, got $EXIT_CODE" # --silent should not print anything OUTPUT=$(nvm use --silent) EXPECTED_OUTPUT="" [ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \ || die "'nvm use --silent' output was not silenced to '$EXPECTED_OUTPUT'; got '$OUTPUT'" rm .nvmrc