1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages/linux/nm.md
2019-09-24 09:24:22 +05:30

19 lines
327 B
Markdown

# nm
> List symbol names in object files.
- List global (extern) functions in a file (prefixed with T):
`nm -g {{file.o}}`
- List only undefined symbols in a file:
`nm -u {{file.o}}`
- List all symbols, even debugging symbols:
`nm -a {{file.o}}`
- Demangle C++ symbols (make them readable):
`nm --demangle {{file.o}}`