hexo源码半自动化推送 123456789101112131415161718192021222324#!/bin/bash# autohexo.sh# 半自动推送更新# -i:接受行内文本作为commit -m 参数# -f:接受一个文本文件作为commit -m 参数# -g:构建页面并推送,无参数commitComment=""echofunction commit2git { git add . git commit -m "$1" git push origin blogSource}while getopts :i:f:g optdo case "$opt" in f)commitComment=$(cat "$OPTARG") commit2git "$commitComment";; i)commitComment=$(echo "$OPTARG") commit2git "$commitComment";; g)hexo g -d;; *);; esacdone 很简单的脚本,通过终端输入或者提供一个文本文件传递commit -m的参数,能够略微简化提交博客源码的流程。 用例: 1./autohexo.sh -gi "更新日志" #linux #hexo #git hexo源码半自动化推送 http://xiaofami.github.io/2021/09/17/hexo-push2git/ 作者 tccmu 发布于 2021年9月17日 许可协议 R3300-M Android6.0试验 上一篇 使用imagemagick处理图片 下一篇