7 lines
133 B
Bash
Executable File
7 lines
133 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Usage ./format
|
|
|
|
find . -name "*.c" -exec clang-format -i {} \;
|
|
find . -name "*.h" -exec clang-format -i {} \;
|