mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-29 19:18:36 -07:00
17 lines
347 B
Bash
17 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
|