Fotobox2/rsync.sh
2025-06-27 23:38:45 +02:00

9 lines
169 B
Bash
Executable File

#!/bin/bash
cd "$(dirname "$0")/data/photos/upload" || exit 1
while true; do
rsync -a -e 'ssh -p 2222' ./* mc@mc.ph87.de:/srv/fotobox.online/html/p/
sleep 60
done