perl调试,直接用perl自带的debugger

前端之家收集整理的这篇文章主要介绍了perl调试,直接用perl自带的debugger前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

例子: test.pl


shell中

perl -d test.pl


s回车是单步调试

l回车是 show the source code

p expr 回车是查看expr变量的值

猜你在找的Perl相关文章