Yes
In this case backups are easy. Here’s what I do
- Create
backup-everdo.sh
, specify the correct source and destination paths.
#!/bin/bash
source=/home/andrei/.config/everdo/db
cp -a -- "$source" "/home/andrei/Dropbox/backup/everdo-db_$(date +"%Y-%m-%dT%H-%M")"
- Make executable:
$ chmod +x backup-everdo.sh
- Try running the script and verify results
$ ./backup-everdo.sh
- Setup a cron rule to repeat the script. Mine is every 4 hours, which allows for a few backups during a day.
$ crontab -e
0 */4 * * * /home/andrei/backup-everdo.sh
This is also possible, please see Change storage location in sqlite base under windows