Updated documentation and fixed bug on extract function

This commit is contained in:
Marco Cetica
2023-03-20 11:42:51 +01:00
parent acff1370ce
commit d49ad449de
4 changed files with 6 additions and 5 deletions

View File

@@ -95,7 +95,7 @@ After that, you will find the final backup archive in `/home/john/backup-<HOSTNA
You can also use `backup.sh` from a crontab rule:
```sh
$> sudo crontab -e
30 03 * * 6 EKEY=$(cat /home/john/.ekey) /usr/local/bin/backup.sh -b /usr/local/etc/sources.bk /home/john $EKEY
30 03 * * 6 EKEY=$(cat /home/john/.ekey) bash -c '/usr/local/bin/backup.sh -b /usr/local/etc/sources.bk /home/john $EKEY' > /dev/null 2>&1
```