1 Star 0 Fork 0

Eugene-Forest/A-Sphinx-Book-Template

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deleteOutput.sh 453 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
## 删除自动构建或预览产生的html文件等
## 判断 source 文件夹下是否存在 _build 文件夹
if [ -d "source/_build/" ];then
echo "文件 source/_build/ 存在,即将进行删除操作..."
cd source/_build/
rm -rf *
echo "******成功删除 _build 文件夹下的所有文件************"
else
echo "文件夹 source/_build/ 不存在,将为您创建 source/_build/ 文件夹..."
mkdir source/_build/
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/eugene-forest/A-Sphinx-Book-Template.git
git@gitee.com:eugene-forest/A-Sphinx-Book-Template.git
eugene-forest
A-Sphinx-Book-Template
A-Sphinx-Book-Template
main

搜索帮助