mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-30 11:38:41 -07:00
17 lines
351 B
Bash
17 lines
351 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
|