function drush_pipe_output
8.0.x drush.inc | drush_pipe_output() |
6.x drush.inc | drush_pipe_output() |
7.x drush.inc | drush_pipe_output() |
3.x drush.inc | drush_pipe_output() |
4.x drush.inc | drush_pipe_output() |
5.x drush.inc | drush_pipe_output() |
master drush.inc | drush_pipe_output() |
Display the pipe output for the current request.
Related topics
1 call to drush_pipe_output()
- drush_shutdown in includes/
preflight.inc - Shutdown function for use while Drush and Drupal are bootstrapping and to return any registered errors.
File
- includes/
drush.inc, line 1374 - The drush API implementation and helpers.
Code
function drush_pipe_output() {
$pipe = drush_get_context('DRUSH_PIPE_BUFFER');
if (!empty($pipe)) {
drush_print_r($pipe, NULL, FALSE);
}
}