1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-09 04:33:37 +02:00

gdb: add French translation (#8486)

This commit is contained in:
Mia Combeau 2022-09-14 15:50:06 +02:00 committed by GitHub
parent 77decbbb90
commit 126c1e1469
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

24
pages.fr/common/gdb.md Normal file
View file

@ -0,0 +1,24 @@
# gdb
> Le débogueur GNU.
> Plus d'informations : <https://www.gnu.org/software/gdb>.
- Débogue un exécutable :
`gdb {{exécutable}}`
- Attache un processus à gdb :
`gdb -p {{identifiant_processus}}`
- Débogue avec un fichier comme image mémoire :
`gdb -c {{fichier}} {{exécutable}}`
- Execute les commandes gdb données au démarrage :
`gdb -ex "{{commandes}}" {{exécutable}}`
- Démarre gdb en passant des arguments à l'exécutable :
`gdb --args {{exécutable}} {{argument1}} {{argument2}}`