7 lines
89 B
Bash
7 lines
89 B
Bash
|
#! /bin/bash
|
||
|
|
||
|
if [ "${1}" == "pre" ]; then
|
||
|
umount /home/dbroqua/Music
|
||
|
killall ssh
|
||
|
fi
|