4 lines
96 B
Bash
Executable File
4 lines
96 B
Bash
Executable File
#!/bin/bash
|
|
|
|
find . -regex '.*\.\(cpp\|hpp\|cu\|c\|h\)' -exec clang-format -style=file -i {} \;
|