summaryrefslogblamecommitdiffstats
path: root/scripts/beautify.sh
blob: 5cb47f2d2d3d1a141dbd7ca0d7bfea43caa3d38f (plain) (tree)
1
2
3
4
5
6





                                                    
#!/bin/bash 
# run astyle on all source files
for f in `find src -name "*.cpp" -o -name "*.h"`; do
    astyle --options=./.astylerc $f
done;