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
Bash

#!/bin/bash
# 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? "
read -p "[y/N] " y_n
echo $y_n
if [ ! "$y_n" = "y" ]; then
echo "Cancelling"
else
rm -r $pathdata
fi