$ gdb -q
Alternatives:
--quiet
--silent
$ gdb --batch
$ gdb -ex command
--nh
- do not process~/.gdbinit
config file--nx
- do not process any.gdbinit
config file
Start gdb in silent batch mode with app binary, execute 'run' command and exit on binary execution complete:
$ gdb --silent --batch app -ex run
TBA