>>>>> "Steven" == Steven M Klass <[EMAIL PROTECTED]> writes:

Steven> Open file

open FILE, "<incoming" or die;

Steven> Start tool

open TOOL, "|my_tool with params here" or die;

Steven> Read line by line, edit as neccessary

while (<FILE>) {
  s/this/that/;

Steven> Feed line by line my data into the tool

  print TOOL $_;
}


Steven> Can anyone enlightenmen me on how to best do this??

I dunno. Was that enough?

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<[EMAIL PROTECTED]> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to