9 lines
169 B
Bash
Executable File
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
|