http://qs321.pair.com?node_id=390401


in reply to Re^3: tieing STDIN & STDOUT using IO::Scalar for use inside an eval
in thread tieing STDIN & STDOUT using IO::Scalar for use inside an eval

That's right... specifically, it depends on what is currently in @ARGV (if there's anything in @ARGV, the contents are treated as file names, and the files are magically opened and read from... if @ARGV is empty, it'll read from STDIN).

As long as we're getting specific, we might as well get it exactly right: The contents of @ARGV are always "treated as file names, and the files are magically opened and read from." If @ARGV is empty, then "$ARGV[0] is set to "-", which when opened gives you standard input." - perlop

So it really never reads from the filehandle named STDIN, but it might read standard input by opening the file named "-".

--
edan

  • Comment on Re^4: tieing STDIN & STDOUT using IO::Scalar for use inside an eval