add a publish command

This commit is contained in:
Greg Gauthier 2025-01-15 21:47:32 +00:00
parent 3548e607cc
commit eaf4dd165e

16
publish Executable file
View File

@ -0,0 +1,16 @@
#!/usr/bin/env sh
# commit and push...
git add .;git commit -m"$@";git push -u origin master
echo "Rsync to host..."
rsync --super -avh -e ssh ./css/* gmgauthier@socrates:/var/www/oldcomputernerd.com
rsync --super -avh -e ssh ./font/* gmgauthier@socrates:/var/www/oldcomputernerd.com
rsync --super -avh -e ssh ./img/* gmgauthier@socrates:/var/www/oldcomputernerd.com
rsync --super -avh -e ssh ./htm/* gmgauthier@socrates:/var/www/oldcomputernerd.com
rsync --super -avh -e ssh ./md/* gmgauthier@socrates:/var/www/oldcomputernerd.com
rsync --super -avh -e ssh ./txt/* gmgauthier@socrates:/var/www/oldcomputernerd.com
rsync --super -avh -e ssh ./*.html gmgauthier@socrates:/var/www/oldcomputernerd.com
rsync --super -avh -e ssh ./*.md gmgauthier@socrates:/var/www/oldcomputernerd.com