Minor fixes

master
IhrFussel 2018-02-01 22:10:10 +01:00
parent 8526491a7e
commit 0de8fa4291
1 changed files with 2 additions and 2 deletions

View File

@ -3,13 +3,13 @@ interval=1800 ### Log interval
logfile="" ### Define file to log the sizes
if [[ $path = "" ]]; then
echo "Open the script and enter the path to the map.sqlite file"
echo "ERROR: Open the script and enter the path to the map.sqlite file"
exit
fi
while true
do
getsize=$(du $path | grep -Eo "^[0-9]{1,}")
echo "$(date) -> $(($getsize/1024)) MB" >> $file
echo "$(date) -> $(($getsize/1024)) MB" >> $logfile
sleep $interval
done