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.
我在一些脚本上运行 perl -d 。该脚本使用了一些导致它崩溃的子程序,我怎样才能找到脚本实际调用该子程序的位置?(它可以在脚本使用的任何模块中,而不仅仅是脚本本身)
看看Devel::Trace 模块。您应该能够使用它跟踪程序执行。
使用该T命令在崩溃后打印堆栈跟踪。使用该t命令在执行期间切换跟踪。
T
t
所有这些都记录在调试器在线帮助 -h命令中。
h