xtreemfs/bin/umount.xtreemfs

13 lines
240 B
Plaintext
Raw Permalink Normal View History

2020-09-22 02:25:22 +02:00
#!/bin/bash
# a simple wrapper around fusermount -u, now passes all args to fusermount
if [ "x$1" == "x" -o "$1" == "--help" -o "$1" == "-h" ]
then
echo "usage: umount.xtreemfs <mount_point>"
echo ""
exit 1
fi
fusermount -u $@
exit $?