e1cb835 ^
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;