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

2
man.md
View File

@@ -94,7 +94,7 @@ You can also use **backup.sh** from a crontab rule:
```
$> 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
```
This will automatically run **backup.sh** every Saturday morning at 03:30 AM.