mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-11-04 05:03:59 +01:00
15 lines
296 B
Bash
Executable File
15 lines
296 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
STYLE='--style=LLVM'
|
|
FORMATER='clang-format -i'
|
|
|
|
if [[ -z $SMVARS ]]
|
|
then
|
|
echo '$SMVARS is not set. Please source '/path/to/Sherman-Morrison/smvars.sh''
|
|
exit 1
|
|
fi
|
|
|
|
for ext in c cpp h hpp
|
|
do
|
|
find $SMROOT -type f -iname "*.${ext}" -exec echo "$FORMATER $STYLE" {} \;
|
|
done |