mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-29 05:03:46 +08:00
3d56d7ee32
darcs-hash:20060124230133-ac50b-b6b8685b2c3771ec1699661de88ba45fe47df82d.gz
18 lines
552 B
Fish
18 lines
552 B
Fish
#
|
|
# Completions for fusermount
|
|
#
|
|
# Find mount points, borrowed from umount.fish
|
|
#
|
|
complete -c fusermount -d (_ "Mount point") -x -a '
|
|
(
|
|
cat /etc/mtab | grep "^sshfs" | cut -d " " -f 1-2|tr " " \n|sed -e "s/[0-9\.]*:\//\//"|grep "^/"
|
|
)
|
|
'
|
|
|
|
complete -c fusermount -s h -d (_ "Display help and exit")
|
|
complete -c fusermount -s v -d (_ "Display version and exit")
|
|
complete -c fusermount -s o -x -d (_ "Mount options")
|
|
complete -c fusermount -s u -d (_ "Unmount")
|
|
complete -c fusermount -s q -d (_ "Quiet")
|
|
complete -c fusermount -s z -d (_ "Lazy unmount")
|