TCLUG Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [TCLUG:14107] Need help with Perl program



Send reply to:  	tclug-list@mn-linux.org
Date sent:      	Sun, 27 Feb 2000 00:54:02 -0600
From:           	Mark Phillips <mbp@geomtech.com>
To:             	tclug-list@mn-linux.org
Subject:        	Re: [TCLUG:14107] Need help with Perl program

> I've written this very script, for mass editing web sites, several
> times myself.  A version is below.
> 
> --Mark
>

Thanks a bunch for the help guys!! My problem has been solved!

> open(FILES, "find $DIR -name '*.html' -print|");
> chomp(@files = <FILES>);
> close(FILES);

The three lines above were the part I was having the most trouble 
with. It looks so simple now...  :-)

Mike