37 lines
751 B
Plaintext
Raw Normal View History

2009-12-28 22:37:40 +02:00
# bash completion for fuse
have fusermount || return
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" ) )
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
# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh