F R A M E   F R E E
WITH PERL!



If you've got "perl" on your machine, you can use this short perl command to remove frames from Netscape:
perl -i.orig -pe ' 		\
    s/\bnoframes\b/noFrames/g;  \
    s/\bframeset\b/frameSet/g' `which netscape`

Changing just one letter in each string works because Netscape downcases the incoming tag before doing an exact string compare to the stored tag with strcmp().

Thanks to John LoVerso, who took a perl script called "democha" by Michael Schmitz and modified it for this new application.


FrameFree