in reply to Re: calling a html file from a perl script
in thread calling a html file from a perl script

You don't need the local $/;

Replies are listed 'Best First'.
Re: Re: Re: calling a html file from a perl script
by suaveant (Parson) on Jul 23, 2001 at 17:34 UTC
    Yes you do, unless you put the print in a while loop.

                    - Ant

      You don't need to put the print in a while loop.
      print <HTML>;reads in list context
        Ahhh... that is true... I'd thing using the local $/; would be more efficient, tho, since it doesn't need to convert the output to a list.

                        - Ant