>>>>> "Bryan" == Bryan Harris <[EMAIL PROTECTED]> writes:

Bryan> What I'm interested in is what's the easiest way to print the
Bryan> contents of a file?  For example, if I want to output my header
Bryan> file, "header.incl", how can I print the contents of that file
Bryan> the easiest (and most generally compatible)?

Easy, and efficient:

  use File::Copy;
  copy "header.incl", \*STDOUT;

Accept no substitutes.

-- 
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