function drush_shell_exec_output
| 6.x exec.inc | drush_shell_exec_output() |
| 5.x exec.inc | drush_shell_exec_output() |
| 3.x drush.inc | drush_shell_exec_output() |
| 4.x drush.inc | drush_shell_exec_output() |
Returns the output of the most recent shell command as an array of lines.
Related topics
20 calls to drush_shell_exec_output()
- DrushMakeProject::applyPatches in commands/
make/ make.project.inc - Retrieve and apply any patches specified by the makefile to this project.
- drush_archive_dump in commands/
core/ archive.drush.inc - Command callback. Generate site archive file.
- drush_complete_match_file in includes/
complete.inc - Retrieves the appropriate list of candidate file/directory completions, filtered by the last word that we are trying to complete.
- drush_core_site_install_version in commands/
core/ drupal/ site_install_6.inc - Install Drupal 6.x
- drush_pm_git_drupalorg_compute_rebuild_version in commands/
pm/ package_handler/ git_drupalorg.inc - Helper function to compute the rebulid version string for a project.
File
- includes/
exec.inc, line 396
Code
function drush_shell_exec_output() {
return _drush_shell_exec_output_set();
}