renamed to reflect version it is for

This commit is contained in:
TomasM
2019-10-19 19:01:58 +00:00
parent 5f0ccd3362
commit 7bca13b9a6
224 changed files with 0 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/bash
# Author: Tomas M. <http://www.slax.org/>
if [ ! -e "$1" ]; then
echo
echo "Erase module directory created by sb2dir"
echo "Usage: $0 [source_directory.sb]"
exit 1
fi
if [ ! -d "$1" ]; then
echo "Directory does not exist: $1" >&2
exit
fi
umount "$1" 2>/dev/null
rm -Rf "$1"