12 lines
274 B
Bash
Executable File
12 lines
274 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "running backup trilium script at $(date)"
|
|
|
|
backup-scripts/start-backup.sh
|
|
|
|
echo "backing up trilium!"
|
|
echo "------------------"
|
|
rsync --stats --progress -arv --ignore-times /home/sem/trilium-data sem@10.10.100.52:/home/sem/
|
|
|
|
backup-scripts/stop-backup.sh
|