You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
308 B
17 lines
308 B
#!/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"
|
|
|