13 lines
240 B
Plaintext
13 lines
240 B
Plaintext
|
#!/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 $?
|