mirror of
https://github.com/x-tools-author/x-tools.git
synced 2025-09-15 15:28:40 +08:00
11 lines
253 B
Bash
11 lines
253 B
Bash
#!/bin/bash
|
|
|
|
# 找到src目录下所有的*.cc和*.h文件
|
|
files=$(find src -type f \( -name "*.cc" -o -name "*.h" \))
|
|
|
|
# 使用clang-format命令来格式化文件
|
|
for srcfile in $files
|
|
do
|
|
echo $srcfile
|
|
clang-format -i -style=file $srcfile
|
|
done |