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

lldb: add Spanish translation (#10401)

This commit is contained in:
Darío Hereñú 2023-08-09 10:52:17 -03:00 committed by GitHub
parent cd32d9ff5a
commit f45bf26575
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,16 @@
# lldb
> El depurador de bajo nivel LLVM.
> Más información: <https://lldb.llvm.org/man/lldb.html>.
- Depura un ejecutable:
`lldb "{{ejecutable}}"`
- Adjunta `lldb` a un proceso en ejecución con un PID dado:
`lldb -p {{pid}}`
- Espera a que se inicie un nuevo proceso con un nombre determinado y adjuntarlo al mismo:
`lldb -w -n "{{nombre_proceso}}"`