~ubuntu-branches/ubuntu/saucy/rocs/saucy-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# apply kdelibs coding style to all c, cpp and header files in and below the current directory 
# 
# the coding style is defined in http://techbase.kde.org/Policies/Kdelibs_Coding_Style 
# 
# requirements: installed astyle 

astyle --indent=spaces=4 --brackets=linux \
      --indent-labels --pad-oper --unpad-paren --pad-header \
      --keep-one-line-statements --convert-tabs \
      --indent-preprocessor \
      `find -type f -name '*.c' -or -name '*.cpp' -or -name '*.cc' -or -name '*.h'`