From: krakjoe Date: Mon, 18 Nov 2013 13:03:33 +0000 (+0000) Subject: help for shell command X-Git-Tag: php-5.6.0alpha1~110^2~238 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d34f1e59c096df955c19860e93774b2e3a90c966;p=php help for shell command --- diff --git a/phpdbg_help.c b/phpdbg_help.c index b99a740e6d..2018e4878c 100644 --- a/phpdbg_help.c +++ b/phpdbg_help.c @@ -312,7 +312,6 @@ PHPDBG_HELP(oplog) /* {{{ */ phpdbg_writeln("Example:"); phpdbg_writeln("\t%soplog /path/to/my.oplog", PROMPT); phpdbg_writeln("Will open the file /path/to/my.oplog for writing, creating it if it does not exist"); - phpdbg_writeln("Example:"); phpdbg_writeln("\t%soplog 0", PROMPT); phpdbg_writeln("Will close the currently open log file, disabling oplog"); phpdbg_writeln(EMPTY); @@ -320,3 +319,17 @@ PHPDBG_HELP(oplog) /* {{{ */ phpdbg_help_footer(); return SUCCESS; } /* }}} */ + +PHPDBG_HELP(shell) /* {{{ */ +{ + phpdbg_help_header(); + phpdbg_writeln("Direct access to shell commands saves having to switch windows/consoles"); + phpdbg_writeln(EMPTY); + phpdbg_writeln("Example:"); + phpdbg_writeln("\t%s- ls /usr/src/php-src", PROMPT); + phpdbg_writeln("Will execute ls /usr/src/php-src, displaying the output in the console"); + phpdbg_writeln(EMPTY); + phpdbg_writeln("Note: read only commands please !"); + phpdbg_help_footer(); + return SUCCESS; +} /* }}} */ diff --git a/phpdbg_help.h b/phpdbg_help.h index a13d47080a..a54c43a25b 100644 --- a/phpdbg_help.h +++ b/phpdbg_help.h @@ -47,6 +47,7 @@ PHPDBG_HELP(back); PHPDBG_HELP(quiet); PHPDBG_HELP(list); PHPDBG_HELP(oplog); +PHPDBG_HELP(shell); /** * Commands @@ -70,6 +71,7 @@ static const phpdbg_command_t phpdbg_help_commands[] = { PHPDBG_COMMAND_D_EX(quiet, "be quiet during execution", 's', help_quiet, NULL, 0), PHPDBG_COMMAND_D_EX(list, "listing code gives you quick access to code while executing", 'l', help_list, NULL, 0), PHPDBG_COMMAND_D_EX(oplog, "keep clutter off the screen by sending oplogs to a file", 'O', help_oplog, NULL, 0), + PHPDBG_COMMAND_D_EX(shell, "execute system commands with direct shell access", '-', help_shell, NULL, 0), PHPDBG_END_COMMAND };