3 FILES="`find -type f -wholename './src/*.cpp'` `find -type f -wholename './src/*.h'` `find -type f -wholename './renderer/*.cpp'` `find -type f -wholename './renderer/*.h'` `find -type f -wholename './plugins/*.cpp'` `find -type f -wholename './plugins/*.h'` `find -type f -wholename './thumbnailer/*.cpp'` `find -type f -wholename './thumbnailer/*.h'`"
10 astyle --indent=spaces=4 --brackets=attach \
11 --indent-labels --unpad=paren \
12 --pad=oper --convert-tabs \
13 --indent-preprocessor \
16 echo -n "Delete .orig files (y/N) ? "
19 if [ "x${del}" = "xy" ]
21 echo "removing .orig files"
22 find src -iname "*.orig" -exec rm {} ";"
24 echo "Not deleting .orig files"