# xine(1) completion by Mind Booster Noori # # v1.1 - 2006-06-29 # # This file can be distributed with any license at all, just please don't # remove the line where it says I was the one who did it... _xine() { local cur prev COMPREPLY=() cur=${COMP_WORDS[COMP_CWORD]} if [[ "$cur" == -* ]]; then COMPREPLY=( $( compgen -W '--version \ --help --verbose --config --video-driver \ --audio-driver --spu-channel --fullscreen \ --no-gui --playlist ' -- $cur ) ) else _filedir fi } complete -F _xine -o filenames xine