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.
我想出了一种无需编辑任何脚本即可打开调试的方法。只需使用 .debug 触摸文件名即可打开我的调试。
$ touch fancy.pl.debug
我担心文件检查(在每个脚本的开头)可能在某种程度上是 IO 密集型的
$opts{d}++ if (-e "$0.debug");
这可能是真的吗?有没有更好的方法来执行此检查或在许多脚本中打开/关闭调试?
它只是一个目录读取。它应该很轻。