Help or point to the right documentation?

2003-05-29 Thread Scot Robnett
Can anyone point me to what documentation I should be reviewing to solve the following problem? I have an HTML file and want to look through it for certain comment tags or lines containing particular text strings, then split it up into ads and articles, for instance. Let's say I have a section

RE: Please Help a NOVICE

2003-05-29 Thread Rev John J Macuga III
Thank you, I for to say that I am using RedHat 9.0 John -Original Message- From: Sp0oKeR [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 1:20 PM To: Rev John J Macuga III Subject: Re: Please Help a NOVICE I saw this problem ath RedHat 9.0. Then, I install modules from RPM

Re: Need your help regarding CGI

2003-05-29 Thread Soumyadeep nandi
Thanks, Maybe try to run it as a system command. my $programtorun = 'ls'; my @parameters= qw/. ../; my @cmdline = ( $programtorun, @parameters ); system (@cmdline); It can be a bit tricky getting all the parameters to your system command to be quoted properly, try a little