mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-03-12 04:36:22 -07:00
18 lines
347 B
Bash
18 lines
347 B
Bash
# mailman unshunt completion -*- shell-script -*-
|
|
|
|
_unshunt()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
if [[ $cur == -* ]]; then
|
|
COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
|
|
else
|
|
_filedir -d
|
|
fi
|
|
|
|
} &&
|
|
complete -F _unshunt unshunt
|
|
|
|
# ex: filetype=sh
|