加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
astyle.bat 928 Bytes
一键复制 编辑 原始数据 按行查看 历史
REM 批量将本目录中的所有C++文件用Astyle进行代码美化操作
REM 设置Astyle命令位置和参数
@echo off
set astyle="tools\AStyle\bin\astyle.exe"
REM 循环遍历目录
for /r app %%a in (*.cpp;*.c;*.hpp;*.h) do %astyle% --style=linux --indent=spaces=4 --indent-preproc-block --pad-oper --pad-header --unpad-paren --suffix=none --align-pointer=name --lineend=windows --convert-tabs --verbose -n "%%a"
for /r bsp %%a in (*.cpp;*.c;*.hpp;*.h) do %astyle% --style=linux --indent=spaces=4 --indent-preproc-block --pad-oper --pad-header --unpad-paren --suffix=none --align-pointer=name --lineend=windows --convert-tabs --verbose -n "%%a"
for /r core %%a in (*.cpp;*.c;*.hpp;*.h) do %astyle% --style=linux --indent=spaces=4 --indent-preproc-block --pad-oper --pad-header --unpad-paren --suffix=none --align-pointer=name --lineend=windows --convert-tabs --verbose -n "%%a"
REM 删除所有的astyle生成文件
for /r . %%a in (*.orig) do del "%%a"
pause
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化