3 SRCDIRS="src plugins renderer thumbnailer"
9 FILES=$(find $SRCDIRS -type f -name \*.cpp -o -name \*.h)
12 astyle --indent=spaces=4 --brackets=linux \
13 --indent-labels --unpad=paren \
14 --pad=oper --convert-tabs \
15 --indent-preprocessor \
18 echo -n "Delete .orig files (y/N) ? "
21 if [ "x${del}" = "xy" ]
23 echo "removing .orig files"
24 find $SRCDIRS -iname "*.orig" -exec rm {} ";"
26 echo "Not deleting .orig files"