Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.12.164.78
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
coa /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
arg.js
4.01
KB
-rw-r--r--
2017-07-07 20:22
cmd.js
14.73
KB
-rw-r--r--
2017-07-07 20:22
color.js
416
B
-rw-r--r--
2017-07-07 20:22
completion.js
3.94
KB
-rw-r--r--
2017-07-07 20:22
completion.sh
1.26
KB
-rw-r--r--
2017-07-07 20:22
index.js
210
B
-rw-r--r--
2017-07-07 20:22
opt.js
7.55
KB
-rw-r--r--
2017-07-07 20:22
shell.js
358
B
-rw-r--r--
2017-07-07 20:22
Save
Rename
#!/usr/bin/env bash ###-begin-{{cmd}}-completion-### # # {{cmd}} command completion script # # Installation: {{cmd}} completion >> ~/.bashrc (or ~/.zshrc) # Or, maybe: {{cmd}} completion > /usr/local/etc/bash_completion.d/{{cmd}} # COMP_WORDBREAKS=${COMP_WORDBREAKS/=/} COMP_WORDBREAKS=${COMP_WORDBREAKS/@/} export COMP_WORDBREAKS if complete &>/dev/null; then _{{cmd}}_completion () { local si="$IFS" IFS=$'\n' COMPREPLY=($(COMP_CWORD="$COMP_CWORD" \ COMP_LINE="$COMP_LINE" \ COMP_POINT="$COMP_POINT" \ {{cmd}} completion -- "${COMP_WORDS[@]}" \ 2>/dev/null)) || return $? IFS="$si" } complete -F _{{cmd}}_completion {{cmd}} elif compctl &>/dev/null; then _{{cmd}}_completion () { local cword line point words si read -Ac words read -cn cword let cword-=1 read -l line read -ln point si="$IFS" IFS=$'\n' reply=($(COMP_CWORD="$cword" \ COMP_LINE="$line" \ COMP_POINT="$point" \ {{cmd}} completion -- "${words[@]}" \ 2>/dev/null)) || return $? IFS="$si" } compctl -K _{{cmd}}_completion {{cmd}} fi ###-end-{{cmd}}-completion-###