chundoong-lab-ta/SHPC2022/format-code.sh

6 lines
148 B
Bash
Raw Normal View History

2022-10-04 21:07:02 +09:00
#!/bin/bash
for file in $(find . -name "*.cu" -o -name "*.cpp" -o -name "*.h" -o -name "*.c" | grep -v "build"); do
clang-format -i $file
done