9 lines
196 B
Bash
Executable File
9 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
trap 'echo "Stopping sync"; exit 0' EXIT SIGINT SIGTERM
|
|
|
|
while true; do
|
|
fswatch -1 *html
|
|
rsync -r images/ slides.zip *html *css *js vps.verleun.org:/docker/web-sites/site/
|
|
done
|