1 Star 0 Fork 0

luxihua201010028/C_Primer_Plus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 503 Bytes
一键复制 编辑 原始数据 按行查看 历史
luxihua201010028 提交于 2022-05-08 18:51 . add chapter10 code
#!/bin/bash
options="$1"
path="$2"
function remove() {
for dir in *; do
[[ -d "$dir" ]] || continue
cd "${dir}" || exit
for file in *; do
if [[ -f "$file" && "$file" != *.c ]]; then
rm -rf "${file}"
fi
done
cd .. || exit
done
}
function compile() {
cd "${path%/*}" || exit
source="${path##*/}"
elf="${source%.*}"
gcc -g std=c11 -Wall "${path##*/}" -o "${elf}"
./"${elf}"
}
case "$options" in
"remove")
remove
;;
"compile")
compile
;;
*)
echo "error options"
;;
esac
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/luxihua201010028/C_Primer_Plus.git
git@gitee.com:luxihua201010028/C_Primer_Plus.git
luxihua201010028
C_Primer_Plus
C_Primer_Plus
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385