in reply to Reaped: Re^2: How to read the file from stdin using perl?in thread How to read the file from stdin using perl?
# don't need to open() anything while (<STDIN>) { print $_; } # don't need to close() anything [download]