Mercurial Hosting > luan
view backup/macos/luanBackup.sh @ 2036:2740f8a9ba3a acme-tiny tip
First test prototype (also convert spaces to tabs and remove *.orig files)
| author | Violet7 |
|---|---|
| date | Wed, 05 Nov 2025 21:49:39 -0800 |
| parents | 077366d117bb |
| children |
line wrap: on
line source
#!/bin/bash BKP=/Volumes/External/luanBackup DIR=/Users/administrator/luan/backup function bkp_machine() { mkdir -p $BKP 2>/dev/null; rm -f `find $BKP/ -name '*.tgz' -mmin +4000`; cd $DIR; rm -rf backups.copy; ./luan.sh copy_backups.luan tar czvf /Volumes/External/luanBackup/$(date +"backup%Y%m%d%H%M").tgz backups.copy; } sleep 60; bkp_machine; sleep 3600;
