1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 20:55:34 +02:00

gdb: add core file example (#3021)

This commit is contained in:
Bruno Bigras 2019-05-13 21:24:17 -04:00 committed by Marco Bonelli
parent 18d6560a53
commit e6b313afab

View file

@ -10,6 +10,10 @@
`gdb -p {{procID}}`
- Debug with a core file:
`gdb -c {{core}} {{executable}}`
- Execute given GDB commands upon start:
`gdb -ex "{{commands}}" {{executable}}`