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

nm: update Dutch translation (#16653)

This commit is contained in:
Sebastiaan Speck 2025-05-29 15:35:15 +02:00 committed by GitHub
parent 53c8c7169a
commit 7eb4d63a97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,16 +5,16 @@
- Toon globale (externe) functies in een bestand (voorafgegaan door T):
`nm -g {{pad/naar/bestand.o}}`
`nm {{[-g|--extern-only]}} {{pad/naar/bestand.o}}`
- Toon alleen ongedefinieerde symbolen in een bestand:
`nm -u {{pad/naar/bestand.o}}`
`nm {{[-u|--undefined-only]}} {{pad/naar/bestand.o}}`
- Toon alle symbolen, ook debugging symbolen:
`nm -a {{pad/naar/bestand.o}}`
`nm {{[-a|--debug-syms]}} {{pad/naar/bestand.o}}`
- Transformeer C++ symbolen (maak ze leesbaar):
`nm --demangle {{pad/naar/bestand.o}}`
`nm {{[-C|--demangle]}} {{pad/naar/bestand.o}}`