summaryrefslogtreecommitdiff
path: root/debian/bash_completion/contrib/unace
diff options
context:
space:
mode:
Diffstat (limited to 'debian/bash_completion/contrib/unace')
-rw-r--r--debian/bash_completion/contrib/unace28
1 files changed, 28 insertions, 0 deletions
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 <rousse@ccr.jussieu.fr>
+#
+# $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