⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.45
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
bash-completion
/
completions
/
View File Name :
msynctool
# bash completion for msynctool -*- shell-script -*- _msynctool() { local cur prev words cword _init_completion || return case $words in --configure) COMPREPLY=( $(compgen -W "$($1 --showgroup \ $prev | awk '/^Member/ {print $2}' | command sed \ -e 's/:$//')" -- "$cur") ) return ;; --addmember) COMPREPLY=( $(compgen -W '$($1 --listplugins \ | command sed -e 1d)' -- "$cur") ) return ;; esac case $prev in --configure|--addgroup|--delgroup|--showgroup|--sync|--addmember) COMPREPLY=( $(compgen -W '$($1 --listgroups \ | command sed -e 1d)' -- "$cur") ) return ;; --showformats|--filter-objtype|--slow-sync) COMPREPLY=( $(compgen -W '$($1 --listobjects \ | command sed -e 1d)' -- "$cur") ) return ;; esac COMPREPLY=( $(compgen -W '--listgroups --listplugins --listobjects --showformats --showgroup --sync --filter-objtype --slow-sync --wait --multi --addgroup --delgroup --addmember --configure --manual --configdir --conflict' -- "$cur") ) } && complete -F _msynctool msynctool # ex: filetype=sh