You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/scripts/cvsaddcurrentdir

31 lines
941 B

#!/bin/sh
#Alexander Neundorf <neundorf@kde.org>
#copyright 2002, GPL
#call this script to add all files in and below the current dir to cvs
#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"
#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 "\.depend/"| grep -v "/\.#" |grep -v "\.la$"`
#echo $FOUND
ask_for_adding() {
echo
read -p "Add file $file to cvs ? (y/n) " answer rest
#if [ "$answer" != "y" ]; then echo $file; fi
if [ "$answer" = "y" ]; then cvs 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\?$" && cvs add $file
echo $file | grep -v "\.[cCh][cp]\?p\?$" && ask_for_adding
done