mirror of https://github.com/CIRCL/Circlean
13 lines
171 B
Plaintext
13 lines
171 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
#set -x
|
||
|
|
||
|
if [ $# -eq 2 ]; then
|
||
|
mount -o noexec,nosuid,nodev,ro "${1}" "${2}"
|
||
|
exit 0
|
||
|
else
|
||
|
echo 'Invalid number of arguments.'
|
||
|
exit 1
|
||
|
fi
|