# This is a completion rule, it parses the usage message for commands and
# options through a one-line perl command

_acheck()
{
	COMPREPLY=()
	cur=${COMP_WORDS[COMP_CWORD]}	# current word
	
	COMPREPLY=( $( compgen -W '-q -v -s -n -d -r -t -V -h --quiet --verbose --rules --spell --nospell --dict --review --trans --dump --version --help' -- $cur ) )

	return 0
}
complete -F _acheck acheck
