36 lines
586 B
Plaintext
Raw Normal View History

# unace(1) completion by Guillaume Rousse <rousse@ccr.jussieu.fr>
2009-06-08 21:22:43 +03:00
have unace &&
_unace()
{
local cur
COMPREPLY=()
cur=`_get_cword`
case "$cur" in
-*)
COMPREPLY=( $( compgen -W '-c -c- -f -f- -o -o- -p -y -y-' -- "$cur" ) )
;;
*)
if [ $COMP_CWORD -eq 1 ]; then
COMPREPLY=( $( compgen -W 'e l t v x' -- "$cur" ) )
else
_filedir '@(ace|ACE)'
fi
;;
esac
return 0
2009-06-08 21:22:43 +03:00
} &&
2009-02-05 10:11:24 +01:00
complete -F _unace $filenames unace
# Local variables:
# mode: shell-script
# sh-basic-offset: 8
# sh-indent-comment: t
# indent-tabs-mode: t
# End:
# ex: ts=8 sw=8 noet filetype=sh