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