Circlean/filesystem/opt/groomer/kitten_umount

13 lines
134 B
Plaintext
Raw Normal View History

#!/bin/bash
set -e
set -x
if [ $# -eq 1 ]; then
umount $1
exit 0
else
echo "Invalid number of arguments."
exit 1
fi