#!/bin/sh #Alexander Neundorf #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