5 lines
125 B
Bash
Executable File
5 lines
125 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dirs="kms++ kmscube kms++util py utils"
|
|
find $dirs \( -name "*.cpp" -o -name "*.h" \) -exec clang-format -i {} \;
|