shellnotes/util/.hidden/.clearlogs.sh

16 lines
379 B
Bash
Raw Normal View History

2021-03-28 11:39:18 +02:00
:<<'info'
shellnotes - .clearlogs.sh
(C) Dimitris Marakomihelakis
Released under the "All rights reserved" category. See the RIGHTS.txt file
in /docs/github/ for its full text.
info
function clearlogs() {
echo -n "Are you sure? " && read input
case $input in Y|Yes|yes|y|YES )
cd ~/.shellnotes/util/exec
./clearlogs
2021-03-28 11:39:18 +02:00
echo "[shellnotes] Logfiles cleared."
esac
2021-04-19 21:20:01 +02:00
cd $DIR
2021-03-28 11:39:18 +02:00
}