Hi, I'm Djd

I'm learning Linux and Termux and i like Photography

雨过天晴

Hi, I'm Djd

I'm learning Linux and Termux and i like Photography

编写一个简单的Shell脚本来执行Hugo任务

1 minutes
December 31, 2023

请将以下内容保存到一个文件(比如myscript.sh

然后通过chmod +x myscript.sh命令使其可执行,最后运行./myscript.sh执行脚本。

#!/bin/bash

# 1. 在当前目录执行hugo命令
hugo

# 2. 在$HOME/github目录执行hugo命令
cd $HOME/github
hugo

# 3. 在$HOME/github/pub目录执行git add、commit和push命令
cd $HOME/github/pub
git add .
git commit -m "Commit message"
git push

请确保你的系统中已经安装了hugogit,并且你有在目标仓库上执行git push命令的权限。如果有任何问题,请告诉我。