mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-01-24 19:52:58 -08:00
31 lines
658 B
Bash
31 lines
658 B
Bash
# newusers(8) completion -*- shell-script -*-
|
|
|
|
_newusers()
|
|
{
|
|
local cur prev words cword split
|
|
_init_completion -s || return
|
|
|
|
case $prev in
|
|
-c | --crypt)
|
|
COMPREPLY=($(compgen -W 'DES MD5 NONE SHA256 SHA512' -- "$cur"))
|
|
return
|
|
;;
|
|
-s | --sha-rounds)
|
|
return
|
|
;;
|
|
esac
|
|
|
|
$split && return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
|
|
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
|
|
return
|
|
fi
|
|
|
|
_filedir
|
|
} &&
|
|
complete -F _newusers newusers
|
|
|
|
# ex: filetype=sh
|