4 lines
90 B
Plaintext
4 lines
90 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
find . -type f -a '(' -name '*.c' -o -name '*.h' ')' | xargs clang-format -i
|