aboutsummaryrefslogtreecommitdiff
path: root/scripts/constant-sync.sh
blob: c016b447a082337dee5eb7c05cc1fe2a4a1b2226 (plain)
1
2
3
4
5
#!/bin/bash
while true; do
  rsync -av --delete ./zola-static/public/ /var/www/homepage/
  sleep 5  # wait 5 seconds before the next sync
done