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

6 lines
148 B
Bash
Raw Normal View History

2023-02-01 17:12:31 +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