]> granicus.if.org Git - php/commitdiff
Update run command for allowing STDIN
authorBob Weinand <bobwei9@hotmail.com>
Wed, 5 Oct 2016 10:14:02 +0000 (12:14 +0200)
committerBob Weinand <bobwei9@hotmail.com>
Wed, 5 Oct 2016 10:14:02 +0000 (12:14 +0200)
sapi/phpdbg/phpdbg_help.c

index d01184b102d32e74b7ee251c4512099637ad2808..a7385df21e79bec7537a0f6c644457e6ab8c84e0 100644 (file)
@@ -810,21 +810,19 @@ phpdbg_help_text_t phpdbg_help_text[] = {
 
 {"run",
 "Enter the vm, starting execution. Execution will then continue until the next breakpoint "
-"or completion of the script. Add parameters you want to use as $argv" CR CR
+"or completion of the script. Add parameters you want to use as $argv. Add a trailing "
+"**< filename** for reading STDIN from a file." CR CR
 
 "**Examples**" CR CR
 
 "    $P run" CR
 "    $P r" CR
 "    Will cause execution of the context, if it is set" CR CR
-"    $P r test" CR
-"    Will execute with $argv[1] == \"test\"" CR CR
+"    $P r test < foo.txt" CR
+"    Will execute with $argv[1] == \"test\" and read from the foo.txt file for STDIN" CR CR
 
 "Note that the execution context must be set. If not previously compiled, then the script will "
-"be compiled before execution." CR CR
-
-"Note that attempting to run a script that is already executing will result in an \"execution "
-"in progress\" error."
+"be compiled before execution."
 },
 
 {"set",