recursive sed excluding svn files
Submitted by benl on Thu, 07/29/2010 - 18:21
Related Terms :
replace string1 with string2, recursively:
find ./ -path '*/.svn' -prune -o -type f -exec sed -i "s/string1/string2/g" {} \;