mirror of https://github.com/CIRCL/Circlean
13 lines
135 B
Plaintext
13 lines
135 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
#set -x
|
||
|
|
||
|
if [ $# -eq 1 ]; then
|
||
|
umount $1
|
||
|
exit 0
|
||
|
else
|
||
|
echo "Invalid number of arguments."
|
||
|
exit 1
|
||
|
fi
|