Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 c++ 代码中使用 pstack 命令并将其存储在一个字符串中。问题是它将堆栈打印到最后一个函数并且字符串变得非常重。有没有办法使用 pstack 只打印最后 n 行堆栈?
如果无法使用 pstack 完成,那么还有其他方法可以解决此目的吗?
您可以将 pstack 输出重定向到文件,然后可以使用 tail -n 查看最后 n 行
例如
pstack 243 > File.txt tail -10 File.txt