3 lines
151 B
Bash
3 lines
151 B
Bash
#!/bin/bash
|
|
# Run clang-format on all C/C++ files in this directory and below.
|
|
find . -name "*.c" -o -name "*.h" -exec clang-format -style=file -i {} + |