Fotobox1/mount_sda1.sh
2017-10-22 10:10:05 +02:00

8 lines
104 B
Bash
Executable File

#!/bin/bash
if [ -e /dev/sda1 ]; then
if ! mount | grep sda1; then
mount /dev/sda1 /fotobox
fi
fi