Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
rohit20538 /
.nvm /
[ HOME SHELL ]
Name
Size
Permission
Action
.cache
[ DIR ]
drwxr-xr-x
.git
[ DIR ]
drwxr-xr-x
.github
[ DIR ]
drwxr-xr-x
alias
[ DIR ]
drwxr-xr-x
test
[ DIR ]
drwxr-xr-x
versions
[ DIR ]
drwxr-xr-x
.dockerignore
140
B
-rw-r--r--
.editorconfig
523
B
-rw-r--r--
.gitattributes
19
B
-rw-r--r--
.gitignore
253
B
-rw-r--r--
.mailmap
51
B
-rw-r--r--
.npmrc
19
B
-rw-r--r--
.travis.yml
3.53
KB
-rw-r--r--
CODE_OF_CONDUCT.md
7.38
KB
-rw-r--r--
CONTRIBUTING.md
4.63
KB
-rw-r--r--
Dockerfile
3.52
KB
-rw-r--r--
GOVERNANCE.md
467
B
-rw-r--r--
LICENSE.md
1.09
KB
-rw-r--r--
Makefile
5.24
KB
-rw-r--r--
PROJECT_CHARTER.md
2.87
KB
-rw-r--r--
README.md
45.63
KB
-rw-r--r--
ROADMAP.md
882
B
-rw-r--r--
bash_completion
2.25
KB
-rw-r--r--
install.sh
16.17
KB
-rwxr-xr-x
nvm-exec
371
B
-rwxr-xr-x
nvm.sh
140.62
KB
-rw-r--r--
package.json
2.32
KB
-rw-r--r--
rename_test.sh
1.21
KB
-rwxr-xr-x
update_test_mocks.sh
2.42
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bash_completion
#!/usr/bin/env bash # bash completion for Node Version Manager (NVM) if ! command -v nvm &> /dev/null; then return fi __nvm_generate_completion() { declare current_word current_word="${COMP_WORDS[COMP_CWORD]}" # shellcheck disable=SC2207 COMPREPLY=($(compgen -W "$1" -- "${current_word}")) return 0 } __nvm_commands() { declare current_word declare command current_word="${COMP_WORDS[COMP_CWORD]}" COMMANDS=' help install uninstall use run exec alias unalias reinstall-packages current list ls list-remote ls-remote install-latest-npm cache deactivate unload version version-remote which' if [ ${#COMP_WORDS[@]} == 4 ]; then command="${COMP_WORDS[COMP_CWORD - 2]}" case "${command}" in alias) __nvm_installed_nodes ;; esac else case "${current_word}" in -*) __nvm_options ;; *) __nvm_generate_completion "${COMMANDS}" ;; esac fi } __nvm_options() { OPTIONS='' __nvm_generate_completion "${OPTIONS}" } __nvm_installed_nodes() { __nvm_generate_completion "$(nvm_ls) $(__nvm_aliases)" } __nvm_aliases() { declare aliases aliases="" if [ -d "${NVM_DIR}/alias" ]; then aliases="$(command cd "${NVM_DIR}/alias" && command find "${PWD}" -type f | command sed "s:${PWD}/::")" fi echo "${aliases} node stable unstable iojs" } __nvm_alias() { __nvm_generate_completion "$(__nvm_aliases)" } __nvm() { declare previous_word previous_word="${COMP_WORDS[COMP_CWORD - 1]}" case "${previous_word}" in use | run | exec | ls | list | uninstall) __nvm_installed_nodes ;; alias | unalias) __nvm_alias ;; *) __nvm_commands ;; esac return 0 } # complete is a bash builtin, but recent versions of ZSH come with a function # called bashcompinit that will create a complete in ZSH. If the user is in # ZSH, load and run bashcompinit before calling the complete function. if [[ -n ${ZSH_VERSION-} ]]; then # First calling compinit (only if not called yet!) # and then bashcompinit as mentioned by zsh man page. if ! command -v compinit > /dev/null; then autoload -U +X compinit && if [[ ${ZSH_DISABLE_COMPFIX-} = true ]]; then compinit -u else compinit fi fi autoload -U +X bashcompinit && bashcompinit fi complete -o default -F __nvm nvm
Close