I apply simple script to change word in some files with another word.
for x in $(find .|grep Makefile) ;
do
sed -i -e 's/certainWord/anotherword/g' $x ;
done
the changes occur in the file when I check it manually but when I try to commit svn files it doesn't sense that anyone has changed !
is it a known problem ?
I'm using smart svn tool to commit