2001-10-30 Don Howard <dhoward@redhat.com>
authorDon Howard <dhoward@redhat.com>
Wed, 31 Oct 2001 19:20:43 +0000 (19:20 +0000)
committerDon Howard <dhoward@redhat.com>
Wed, 31 Oct 2001 19:20:43 +0000 (19:20 +0000)
* gdb.texinfo: (Command Files) Added documentation for the
behavior of gdb with input redirected from a file.

gdb/doc/ChangeLog
gdb/doc/gdb.texinfo

index 38d8abdfaee14f79530088e73d229521efc9007f..0f2257b3724cf081fff429295a6c6e8e979f324b 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-30  Don Howard  <dhoward@redhat.com>
+
+       * gdb.texinfo: (Command Files) Added documentation for the behavior of gdb with
+       input redirected from a file.
+
 2001-10-28  Fred Fish  <fnf@redhat.com>
 
        * gdb.texinfo (auto-solib-add): Change docs to match
index d4689775c99e310bbd7eb633c309d706c67b1820..bfa50a281dd903bac9c4ed25fd2ec51d0512871c 100644 (file)
@@ -13114,6 +13114,20 @@ without asking when used in a command file.  Many @value{GDBN} commands that
 normally print messages to say what they are doing omit the messages
 when called from command files.
 
+@value{GDBN} also accepts command input from standard input.  In this
+mode, normal output goes to standard output and error output goes to
+standard error.  Errors in a command file supplied on standard input do
+not terminate execution of the command file --- execution continues with
+the next command.
+
+@example
+gdb < cmds > log 2>&1
+@end example
+
+(The syntax above will vary depending on the shell used.) This example
+will execute commands from the file @file{cmds}. All output and errors
+would be directed to @file{log}.
+
 @node Output
 @section Commands for controlled output
 
This page took 0.039355 seconds and 4 git commands to generate.