Perl Programming/Keywords/readpipe

Previous: readlink Keywords Next: recv

The readpipe keyword edit

readpipe executes EXPRESSION as a system command and returns the collected standard output. If called from scalar context, a string is returned. If called from list context, a list of lines as defined by $/ or $INPUT_RECORD_SEPARATOR is returned. This is the internal implementation of the qx/EXPRESSION/ operator.

Syntax edit

  readpipe EXPRESSION
  readpipe

See also edit

Previous: readlink Keywords Next: recv