blob: 662a94b4c58924d33bd9a70ca9e46d33968f0018 [file] [log] [blame]
#!/bin/bash
file=$(find . -path ./test/gtest/ -prune -name "*.[ch]" -o -name "*.cpp")
for i in $file
do
echo $i
astyle --style=linux -s4 -c -s -p -U -H -n $i
done