1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:42:07 +02:00

lldb: add Spanish translation (#15301)

This commit is contained in:
Igor Támara 2024-12-28 23:41:48 -05:00 committed by GitHub
parent 40b07fe7cd
commit daf99aec9c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

16
pages.es/common/lldb.md Normal file
View file

@ -0,0 +1,16 @@
# lldb
> El depurador LLVM de bajo nivel.
> Más información: <https://lldb.llvm.org>.
- Depura un ejecutable:
`lldb {{ejecutable}}`
- Asocia `lldb` a un proceso de ejecución con un PID dado:
`lldb -p {{pid}}`
- Espera un nuevo proceso con un nombre dado para ejecutarse y asociarse al mismo:
`lldb -w -n {{nombre_del_proceso}}`