hexdump, logger, netstat, n, nm, pdfgrep: move to common (#6549)
This commit is contained in:
19
pages/common/nm.md
Normal file
19
pages/common/nm.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# 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}}`
|
Reference in New Issue
Block a user