gdb: add pt_BR translation (#4709)

beep
André Almeida 2020-10-19 13:38:18 -03:00 committed by GitHub
parent c449998232
commit 4f2d04c03b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

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

@ -0,0 +1,24 @@
# gdb
> O depurador GNU.
> Mais informações: <https://www.gnu.org/software/gdb>.
- Depurar um executável:
`gdb {{executável}}`
- Vincular um processo ao gdb:
`gdb -p {{PID}}`
- Depurar usando um arquivo de "core dump":
`gdb -c {{core}} {{executável}}`
- Executa um dado comando do gdb ao iniciar:
`gdb -ex "{{comandos}}" {{executável}}`
- Inicia o gdb passando argumentos para o executável:
`gdb --args {{executável}} {{argumento1}} {{argumento2}}`