4 lines
113 B
Bash
Executable File
4 lines
113 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find . -name "*.cpp" -o -name "*.h" | grep -v -e build/ -e ggml/ -e vendor/ | xargs clang-format -i
|