You can abbreviate a gdb command to the first few letters of the command
name, if that abbreviation is unambiguous; and you can repeat certain
gdb commands by typing just
A gdb command is a single line of input. There is no limit on how long it can be. It starts with a command name, which is followed by arguments whose meaning depends on the command name. For example, the command step accepts an argument which is the number of times to step, as in step 5. You can also use the step command with no arguments. Some commands do not allow any arguments.
gdb command names may always be truncated if that abbreviation is unambiguous. Other possible command abbreviations are listed in the documentation for individual commands. In some cases, even ambiguous abbreviations are allowed; for example, s is specially defined as equivalent to step even though there are other commands whose names start with s. You can test abbreviations by using them as arguments to the help command.
A blank line as input to gdb (typing just
The list and x commands, when you repeat them with
gdb can also use
Any text from a # to the end of the line is a comment; it does nothing. This is useful mainly in command files (refer to Section 22.3 Command files).
The C-o binding is useful for repeating a complex sequence of commands. This command accepts the current line, like RET, and then fetches the next line relative to the current line from the history for editing.