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