#!/bin/bash
# a simple wrapper around fusermount -u, now passes all args to fusermount

if [ $# -lt 1 -o $1 == "--help" -o $1 == "-h" ]
then
	echo "usage: xtfs_umount <mount_point>"
	echo ""
	exit 1
fi

fusermount -u $@
exit $?
