in reply to Re: How to read the file from stdin using perl?
in thread How to read the file from stdin using perl?

This node was taken out by the NodeReaper on May 09, 2017 at 16:30 UTC
  • Comment on Reaped: Re^2: How to read the file from stdin using perl?

Replies are listed 'Best First'.
Re^3: How to read the file from stdin using perl?
by tobyink (Canon) on May 09, 2017 at 14:48 UTC
    # don't need to open() anything while (<STDIN>) { print $_; } # don't need to close() anything