Skip to content

Instantly share code, notes, and snippets.

@stephenajulu
Forked from cybertramp/commit.sh
Created July 25, 2020 19:38
Show Gist options
  • Select an option

  • Save stephenajulu/110b6206546b59c616c20f8e193c0c97 to your computer and use it in GitHub Desktop.

Select an option

Save stephenajulu/110b6206546b59c616c20f8e193c0c97 to your computer and use it in GitHub Desktop.
write hugo post script and commit script
#! /bin/bash
# =============================
#
# Hugo fast commit script
#
# Created 19.09.23([email protected])
#
# =============================
hugo_path=`dirname $PWD`/hugo
var_date=`date +%F`
external_dir=`../blog/`
echo "Start commit"
${hugo_path}
rm -rf ${external_dir}*
cp -rf public/* ${external_dir}
git -C ${external_dir}. add .
git -C ${external_dir}. commit -m "${var_date}"
git -C ${external_dir}. push origin +master
#! /bin/bash
# =============================
#
# Hugo fast write script
#
# Created 19.09.23([email protected])
#
# =============================
## Hugo located under dirctory(../hugo)
hugo_path=`dirname $PWD`/hugo
now_date=`date +%F`
echo "Please input filename"
read input
${hugo_path} new post/${now_date}-${input}.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment