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 代码到调试器?
例如,假设我使用以下语句在某个位置停止调试器:
$DB::single = 1
我希望能够:
在调试器提示符下键入并执行一般 Perl 语句
运行脚本
您在调试器中键入的任何未被识别为调试器命令的内容都将被解释为 perl 并运行。require您可以使用or运行文件do,尽管我不确定您说“交互式”从另一个文件运行代码时的想法。
require
do