summaryrefslogtreecommitdiff
path: root/contrib/unace
blob: c63767426617f827ad1f4d108da8d96210548358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
# ex: ts=8 sw=8 noet filetype=sh
#
# unace(1) completion by Guillaume Rousse <rousse@ccr.jussieu.fr>

_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

}
complete -F _unace $filenames unace