summaryrefslogtreecommitdiff
path: root/contrib/fusermount
blob: 15c12a04bf3ccfdf3666ca68c9d774f1cd32de28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash -eu
#
# Mac OS X does not have fusermount. Put this script into
# your $PATH to emulate it using umount.
#
cd "$(dirname "$0")"
MYNAME=$(basename "$0")
if [[ $# -lt 1 ]] ; then
	echo "$PWD/$MYNAME: missing argument"
	exit 1
fi
# Get the mount point from the last argument, ignore everything else
M=${@: -1}
exec umount "$M"