echo, fdroid, fdroidcl, ffprobe, ffsend, fg, firefox, fortune, fuck, g++, gdb, gpg2, grep: add German translation (#5361)

This commit is contained in:
marchersimon
2021-03-07 15:12:23 +01:00
committed by GitHub
parent ed353b068b
commit 621355ceaf
13 changed files with 325 additions and 0 deletions

24
pages.de/common/gdb.md Normal file
View File

@@ -0,0 +1,24 @@
# gdb
> Der GNU Debugger.
> Mehr Informationen: <https://www.gnu.org/software/gdb>.
- Debugge eine ausführbare Datei:
`gdb {{ausführbare_datei}}`
- Binde einen Prozess an gdb:
`gdb -p {{prozess_ID}}`
- Debugge mit einer Kerndatei:
`gdb -c {{kerndatei}} {{ausführbare_datei}}`
- Führe angegebene Befehle beim Start von gdb aus:
`gdb -ex "{{befehle}}" {{ausführbare_datei}}`
- Starte gdb und übergib Argumente an die ausführbare Datei:
`gdb --args {{ausführbare_datei}} {{argument1}} {{argument2}}`