How to disable "Type <return> to continue, or q <return> to quit" in gdb?

DebuggingGdb

Debugging Problem Overview


I want to automatise gdb, and waiting for the user input is undesirable. How to disable the message "Type <return> to continue, or q <return> to quit" in gdb?

Debugging Solutions


Solution 1 - Debugging

Disable pagination: set pagination off

Source: https://sourceware.org/gdb/onlinedocs/gdb/Screen-Size.html

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionF&#225;bio PerezView Question on Stackoverflow
Solution 1 - DebuggingFábio PerezView Answer on Stackoverflow