8 lines
104 B
Bash
Executable File
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
|