generated from nhcarrigan/template
10 lines
322 B
Bash
Executable File
10 lines
322 B
Bash
Executable File
#! /usr/bin/bash
|
|
|
|
dirs=("bsky" "chat" "games" "link-redirector" "resume" "testimonials" "manual" "sitemap" "music");
|
|
|
|
for dir in "${dirs[@]}"; do
|
|
rsync -av $dir prod:/home/nhcarrigan
|
|
echo "Synced $dir"
|
|
done
|
|
|
|
echo "mail/index.html must be manually synced to mail:/home/user-data/www/default by a user with sudo access." |