$ gdb -q
Alternatives:
--quiet--silent
$ gdb --batch
$ gdb -ex command
--nh- do not process~/.gdbinitconfig file--nx- do not process any.gdbinitconfig 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