]> git.sesse.net Git - kdenlive/blobdiff - reindent.sh
Even more German corrections
[kdenlive] / reindent.sh
index 47140d1d7b4578e08916ee2efa85a13e3cd2116b..0233d0c38ad9cfcfeb87ef248880f5252068fcaa 100755 (executable)
@@ -1,7 +1,27 @@
 #! /bin/sh
 
-astyle --indent=spaces=4 --brackets=attach \
+SRCDIRS="src plugins renderer thumbnailer"
+
+if [ $# -gt 0 ]
+then
+       FILES=$@
+else
+       FILES=$(find $SRCDIRS -type f -name \*.cpp -o -name \*.h)
+fi
+
+astyle --indent=spaces=4 --brackets=linux \
        --indent-labels --unpad=paren \
        --pad=oper --convert-tabs \
        --indent-preprocessor \
-       `find -type f -wholename './src/*.cpp'` `find -type f -wholename './src/*.h'`
\ No newline at end of file
+       ${FILES}
+
+echo -n "Delete .orig files (y/N) ? "
+read del
+
+if [ "x${del}" = "xy" ]
+then
+   echo "removing .orig files"
+   find $SRCDIRS -iname "*.orig" -exec rm {} ";"
+else
+   echo "Not deleting .orig files"
+fi