Push first version
This commit is contained in:
7
completions/genpass.bash
Normal file
7
completions/genpass.bash
Normal file
@@ -0,0 +1,7 @@
|
||||
_genpass() {
|
||||
local cur opts
|
||||
cur="${COMP_WORDS[COMP_CWORD]}"
|
||||
opts="--help -l --length -n --count --lower --upper --digits --symbols --symbol-set --no-ensure"
|
||||
COMPREPLY=( $(compgen -W "$opts" -- "$cur") )
|
||||
}
|
||||
complete -F _genpass genpass
|
||||
Reference in New Issue
Block a user