[Webkit-unassigned] [Bug 14885] LGPL'ed files contain incorrect FSF address

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Sep 23 08:06:04 PDT 2007


http://bugs.webkit.org/show_bug.cgi?id=14885





------- Comment #5 from ddkilzer at webkit.org  2007-09-23 08:06 PDT -------
(From update of attachment 16267)
>find * -type f | while read f; do sed -i 's/59 Temple Place.*Suite 330/51 Franklin Street, Fifth Floor/; s/02111-1307/02110-1301/; s/\(51 Franklin St\)eet/\1reet/' $f; done

NOTE: If this command is run on an svn working copy, it will corrupt files in
.svn directories.  (If it were used on a git repository, you'd want to make
sure you excluded the .git directory, which is probably why "find *" was used.)

Another way to write this would be:

find . -name .git -prune -o -name .svn -prune -o -type f -exec grep sed -i
's/59 Temple Place.*Suite 330/51 Franklin Street, Fifth Floor/;
s/02111-1307/02110-1301/; s/\(51 Franklin St\)eet/\1reet/'  {} \;

Anyone who runs the script should do an "svn diff" (or git-diff) on the entire
source tree to make sure there weren't any unexpected changes that happened.


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list