Mercurial Hosting > luan
view backup/macos/luanBackup.sh @ 2141:c62dfd37545f nginx_decoupled
use regex trick to stop stop_nginx.sh from detecting itself
| author | Violet7 |
|---|---|
| date | Mon, 19 Jan 2026 20:56:48 -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;
