同时部署Hexo到Gitee和VPS的一个小脚本

时在gitee和阿里云vps上分别分别搭建了两个博客(尽管内容是一样的,但用的不同主题......),写个小脚本同步一下文章,免得手动麻烦死。

脚本

命名为blog_update.sh,内容如下

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#!/bin/bash
HEXO_PATH=/path/to/your/hexo_blog 
GITEE_PATH=/path/to/your/gitee_blog 

cd ${HEXO_PATH}
hexo clean && hexo g -d 
rm -f ${GITEE_PATH}/source/_posts/*
cp ${HEXO_PATH}/source/_posts/* ${GITEE_PATH}/source/_posts/
cd ${GITEE_PATH}
hexo clean && hexo g -d

嗯,就这样把,凑合着用够了。。。

updatedupdated2023-04-072023-04-07