You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Comrad/bin/comrad-reset

18 lines
352 B
Plaintext

4 years ago
#!/bin/bash
4 years ago
4 years ago
# funcs (mac doesnt have realpath)
realpath() {
[[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"
}
pathdata="`realpath ~/comrad/data`"
echo "Removing $pathdata. You will permanently lose your users and contacts. Proceed? "
4 years ago
4 years ago
read -p "[y/N] " y_n
4 years ago
echo $y_n
if [ ! "$y_n" = "y" ]; then
echo "Cancelling"
else
4 years ago
rm -r $pathdata
4 years ago
fi