CARVIEW |
- #readpipe EXPR
- #readpipe
-
EXPR is executed as a system command. The collected standard output of the command is returned. In scalar context, it comes back as a single (potentially multi-line) string. In list context, returns a list of lines (however you've defined lines with
$/
(or$INPUT_RECORD_SEPARATOR
in English)). This is the internal function implementing theqx/EXPR/
operator, but you can use it directly. Theqx/EXPR/
operator is discussed in more detail in "qx/STRING/
" in perlop. If EXPR is omitted, uses$_
.
Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via the GitHub issue tracker or email regarding any issues with the site itself, search, or rendering of documentation.
The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via the Perl issue tracker, the mailing list, or IRC to report any issues with the contents or format of the documentation.