29 lines
666 B
Plaintext
Raw Normal View History

# fusermount completion -*- shell-script -*-
2009-12-28 22:37:40 +02:00
_fusermount()
{
local cur prev words cword
_init_completion || return
2009-12-28 22:37:40 +02:00
case $prev in
2009-12-28 22:37:40 +02:00
-h|-V|-o)
return 0
;;
-u)
COMPREPLY=( $( compgen -W "$( awk \
'{ if ($3 ~ /^fuse(\.|$)/) print $2 }' /etc/mtab \
2>/dev/null )" -- "$cur" ) )
2009-12-28 22:37:40 +02:00
return 0
;;
esac
if [[ "$cur" == -* ]] ; then
COMPREPLY=( $( compgen -W '$( _parse_help "$1" -h )' -- "$cur" ) )
2009-12-28 22:37:40 +02:00
else
_filedir -d
fi
} &&
complete -F _fusermount fusermount
2009-12-28 22:37:40 +02:00
# ex: ts=4 sw=4 et filetype=sh