From fc7695ee76400ee9833301f98a3fe483d64591b5 Mon Sep 17 00:00:00 2001 From: An-Cheng Huang Date: Mon, 12 Nov 2007 13:13:20 -0800 Subject: initial import from bash_3.1dfsg-8.diff.gz --- debian/bash_completion/contrib/unace | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 debian/bash_completion/contrib/unace (limited to 'debian/bash_completion/contrib/unace') diff --git a/debian/bash_completion/contrib/unace b/debian/bash_completion/contrib/unace new file mode 100644 index 0000000..59f0ca2 --- /dev/null +++ b/debian/bash_completion/contrib/unace @@ -0,0 +1,28 @@ +# unace(1) completion by Guillaume Rousse +# +# $Id: unace,v 1.3 2003/12/31 08:22:37 ianmacd Exp $ + +_unace() +{ + local cur + + COMPREPLY=() + cur=${COMP_WORDS[COMP_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 + +} +complete -F _unace -o filenames unace -- cgit v1.2.3