Forrest logo
back to context overview

nm

List of commands for nm:

  • nm:tldr:9691a nm: List global (extern) functions in a file (prefixed with T).
    $ nm -g ${filename-o}
    try on your machine
    explain this command
  • nm:tldr:9e99c nm: List only undefined symbols in a file.
    $ nm -u ${filename-o}
    try on your machine
    explain this command
  • nm:tldr:ba4c9 nm: Demangle C++ symbols (make them readable).
    $ nm --demangle ${filename-o}
    try on your machine
    explain this command
  • nm:tldr:e33a3 nm: List all symbols, even debugging symbols.
    $ nm -a ${filename-o}
    try on your machine
    explain this command
back to context overview