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 )
|
2021-04-18 12:19:08 +02:00
|
|
|
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
|
|
|
}
|