diff options
Diffstat (limited to 'scripts/svnaddcurrentdir')
-rwxr-xr-x | scripts/svnaddcurrentdir | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/scripts/svnaddcurrentdir b/scripts/svnaddcurrentdir new file mode 100755 index 00000000..2474bb01 --- /dev/null +++ b/scripts/svnaddcurrentdir @@ -0,0 +1,30 @@ +#!/bin/sh +#Alexander Neundorf <[email protected]> +#copyright 2002, GPL + +#call this script to add all files in and below the current dir to SVN +#it adds *.c, *.h, *.C, *.cpp, *.cc automatically +#*~, *.o, *.so, *.lo, *.la, .libs/, .deps/, .#* are ignored +#it asks for the remaining files + + +#ignore dirs "CVS", ".deps", ".libs" ".svn" +#ignore files *.o, *.so, *.lo, *.la, *~, .#* +FOUND=`find |grep -v "^\.$"| grep -v CVS| grep -v "\.[ls]\?o$"|grep -v "~$"|grep -v "\.libs/"|grep -v "\.deps/" |grep -v "\.svn/" |grep -v "\.depend/"| grep -v "/\.#" |grep -v "\.la$"` +#echo $FOUND + +ask_for_adding() { +echo +read -p "Add file $file to SVN ? (y/n) " answer rest +#if [ "$answer" != "y" ]; then echo $file; fi +if [ "$answer" == "y" ]; then svn add $file; fi +} + + +for file in $FOUND +do +#matches all *.h, *.c, *.cpp, *.C, *.cpp, *.cc (and some others too) + echo $file | grep "\.[cCh][cp]\?p\?$" && svn add $file + echo $file | grep -v "\.[cCh][cp]\?p\?$" && ask_for_adding +done + |