fusermount: Complete curlftpfs-mounts for "fusermount -u" (Debian: #685377)

Patch provided by Tim Riemenschneider <debian@tim-riemenschneider.de>
master
Igor Murzov 2012-08-22 15:13:43 +04:00
parent b9276c8a37
commit 2897e62fe7
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ _fusermount()
;;
-u)
COMPREPLY=( $( compgen -W "$( awk \
'{ if ($3 ~ /^fuse\./) print $2 }' /etc/mtab 2>/dev/null )" \
-- "$cur" ) )
'{ if ($3 ~ /^fuse(\.|$)/) print $2 }' /etc/mtab \
2>/dev/null )" -- "$cur" ) )
return 0
;;
esac