1
0
mirror of https://github.com/xzeldon/vwdump.git synced 2025-07-14 17:44:36 +03:00

initial commit

This commit is contained in:
10
2018-11-16 01:39:51 +01:00
commit bd9987a124
5 changed files with 97 additions and 0 deletions

9
backup.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/sh
/usr/bin/sqlite3 $DB_FILE ".backup $BACKUP_FILE"
if [ $? -eq 0 ]
then
echo "$(date) - Backup successfull"
else
echo "$(date) - Backup unsuccessfull"
fi