⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.101
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
opt
/
nvm
/
test
/
slow
/
nvm uninstall
/
View File Name :
Running "nvm uninstall 0.12.6" uninstalls v0.12.6
#!/bin/sh die () { echo "$@" ; exit 1; } # Source nvm \. ../../../nvm.sh # Version to install/uninstall NVM_TEST_VERSION=0.12.6 # Make sure it's not already here [ -e ../../../$NVM_TEST_VERSION ] && rm -R ../../../$NVM_TEST_VERSION # Install it nvm install $NVM_TEST_VERSION # Make sure it installed nvm ls | grep "$NVM_TEST_VERSION" || die "Failed to install node" # Switch to another version so we can uninstall nvm use 0.12.7 # if zsh, set "nomatch" opt to reproduce failure from https://github.com/nvm-sh/nvm/issues/1228 if nvm_has "setopt"; then setopt nomatch fi # Uninstall it nvm uninstall $NVM_TEST_VERSION # Make sure it uninstalled nvm ls | grep "$NVM_TEST_VERSION" [ "$?" != "0" ] || die "Failed to uninstall node"