#!/usr/bin/perl -pi # # Edit a bunch of files in place, changing all occurrences of # "Public Relations" to "Communications". # # Usage: changeall.pl *.html # # Earl Fogel, February 2000 s/Public Relations/Communications/g;