In article
<0695c2e1-17fb-4b42-917a-c9ca9f0bfb9d@a32g2000prf.googlegroups.com>,
> > If your file is plain text (which I'd assume it is, since you're
> > editing in TextWrangler), you can always pass it through sed: sed -e
[quoted text clipped - 3 lines]
> Textwrangler plain text file and I get something called sed and pass
> something through it...
You save the file to disk, then open a Terminal window, and type:
sed 's/red/crimson/g;s/gray/grey/g' filename.txt > filename-new.txt
Now filename-new.txt is the version with all the substitutions.

Signature
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***
*** PLEASE don't copy me on replies, I'll read them in the group ***