add recursive to markdown directory

This commit is contained in:
Greg Gauthier 2025-01-15 22:06:31 +00:00
parent 130d41b73a
commit b282493ce8

11
publish
View File

@ -4,14 +4,17 @@
git add .;git commit -m"$@";git push -u origin master
echo "Rsync to host..."
echo "Rsync static assets..."
rsync --super -avh -e ssh ./css/* gmgauthier@socrates:/var/www/oldcomputernerd.com/css
rsync --super -avh -e ssh ./font/* gmgauthier@socrates:/var/www/oldcomputernerd.com/font
rsync --super -avh -e ssh ./img/* gmgauthier@socrates:/var/www/oldcomputernerd.com/img
rsync --super -avh -e ssh ./htm/* gmgauthier@socrates:/var/www/oldcomputernerd.com/htm
rsync --super -avh -e ssh ./md/* gmgauthier@socrates:/var/www/oldcomputernerd.com/md
rsync --super -avh -e ssh ./txt/* gmgauthier@socrates:/var/www/oldcomputernerd.com/txt
echo "Rsync content files"
rsync --super -avh -e ssh ./txt/* gmgauthier@socrates:/var/www/oldcomputernerd.com/txt
rsync --super -avh -e ssh ./htm/* gmgauthier@socrates:/var/www/oldcomputernerd.com/htm
rsync --super -avhr -e ssh ./md/* gmgauthier@socrates:/var/www/oldcomputernerd.com/md
echo "Rsync root files"
rsync --super -avh -e ssh ./*.html gmgauthier@socrates:/var/www/oldcomputernerd.com
rsync --super -avh -e ssh ./*.md gmgauthier@socrates:/var/www/oldcomputernerd.com