Perl 调试器可以将 ReadLine 历史记录保存到文件中吗?
我暂时停止使用 lib ReadLine 和 lib Perl Readline。
然而,Perl 调试器拒绝保存会话命令行历史记录。
因此,每次调用调试器时,我都会丢失以前的所有历史记录。
有谁知道如何让 Perl 调试器保存并希望附加类似于 bash HISTORYFILE
的会话历史记录?
I work quit a bit with lib ReadLine and the lib Perl Readline.
Yet, the Perl debugger refuses to save the session command line history.
Thus, each time I invoke the debugger I lose all of my previous history.
Does anyone know how to have the Perl debugger save, and hopefully, append session history similar to the bash HISTORYFILE
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将
parse_options("TTY=/dev/stdin ReadLine=0");
添加到 .perldb,然后:Add
parse_options("TTY=/dev/stdin ReadLine=0");
to .perldb, then:我执行了以下操作:
1)创建了之前不存在的
~/.perldb
。2)从mirod的答案中添加了
&parse_options("HistFile=$ENV{HOME}/.perldb.hist");
。3)从 mephinet 的答案中添加了
export PERLDB_OPTS=HistFile=$HOME/.perldb.history
到 ~/.bashrc 。4) 运行
source .bashrc
5) 运行
perl -d my program.pl
,并收到此警告/错误6) 我保护
~/.perldb
code> 与所有者 rwchmod 700 ~/.perldb
,错误就消失了。I did the following:
1) Created
~/.perldb
, which did not exist previously.2) Added
&parse_options("HistFile=$ENV{HOME}/.perldb.hist");
from mirod's answer.3) Added
export PERLDB_OPTS=HistFile=$HOME/.perldb.history
to ~/.bashrc from mephinet's answer.4) Ran
source .bashrc
5) Ran
perl -d my program.pl
, and got this warning/error6) I protected
~/.perldb
with owner rwchmod 700 ~/.perldb
, and the error went away.我这样做的方法是在我的
~/.perldb
文件中添加以下行:&parse_options("HistFile=$ENV{HOME}/.perldb.hist");< /code>
调试器命令随后存储在
~/.perldb.hist
中并可以跨会话访问。The way I do this is by having the following line in my
~/.perldb
file:&parse_options("HistFile=$ENV{HOME}/.perldb.hist");
Debugger commands are then stored in
~/.perldb.hist
and accessible across sessions.