diff --git a/sync b/sync new file mode 100755 index 0000000..1016ee5 --- /dev/null +++ b/sync @@ -0,0 +1,21 @@ +#! /bin/bash +FILE="$(realpath "${BASH_SOURCE[0]}")" +DIRECTORY="$(dirname "${FILE}")" + +OUT='output' + +function rs { +echo ; echo +echo "→ ${1} @ ${2}" +echo +rsync --verbose --progress \ +--archive --checksum --delete-before \ +"${DIRECTORY}/${OUT}/" \ +"${1}@${2}:${3}/" +} + +rs 'user' 'rwx.work' '/ssd/projects/public/rwx.work/blog' +rs 'marc' 'envs.net' 'public_html' +rs 'marc' 'tilde.team' 'public_html' +rs 'marc' 'tildecities.com' 'public_html' +rs 'marc' 'tilde.institute' 'public_html'