summaryrefslogtreecommitdiff
path: root/style_unify
blob: 4915e63894c07d827ecbe05adc752a0594ce82d6 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
file=$(find . -name "*.[ch]" -o -name "*.cpp")
for i in $file
do 
    echo $i 
    astyle --style=linux -s4 -c -s -p -U -H -n $i
done