获取符号中符号的数量 table

Getting the number of symbols in a symbol table

我正在尝试查找 executable 定义的符号数。假设我们的 executable 被称为 "node"

我是 运行

nm node

在我的终端上,它正在输出大量符号。 我已经查看了 nm 的手册页以及 https://linux.die.net/man/1/nm ,但我一直无法找到可以简单地 return 符号 table 中的符号计数的内容.

尝试以下方法

nm -an foo | wc -l