function drush_shell_exec_interactive
8.0.x exec.inc | drush_shell_exec_interactive($cmd) |
6.x exec.inc | drush_shell_exec_interactive($cmd) |
7.x exec.inc | drush_shell_exec_interactive($cmd) |
4.x drush.inc | drush_shell_exec_interactive($cmd) |
5.x exec.inc | drush_shell_exec_interactive($cmd) |
master exec.inc | drush_shell_exec_interactive($cmd) |
Executes a command in interactive mode.
See also
drush_shell_exec.
Related topics
6 calls to drush_shell_exec_interactive()
- drush_config_edit in commands/
core/ config.drush.inc - Edit command callback.
- drush_core_config in commands/
core/ core.drush.inc - Command callback. Edit drushrc and alias files.
- drush_core_runserver in commands/
runserver/ runserver.drush.inc - Callback for runserver command.
- drush_init_core_init in commands/
core/ init.drush.inc - Initialize local Drush configuration
- drush_print_file in includes/
output.inc - Print the contents of a file.
1 string reference to 'drush_shell_exec_interactive'
- make_download_svn in commands/
make/ make.download.inc - Checks out an SVN repository to the specified download location.
File
- includes/
exec.inc, line 104 - Functions for executing system commands. (e.g. exec(), system(), ...).
Code
function drush_shell_exec_interactive($cmd) {
return _drush_shell_exec(func_get_args(), TRUE);
}