Perl 调试器可以将 ReadLine 历史记录保存到文件中吗?

发布于 2024-11-16 10:51:40 字数 192 浏览 3 评论 0原文

我暂时停止使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

埋情葬爱 2024-11-23 10:51:41

parse_options("TTY=/dev/stdin ReadLine=0"); 添加到 .perldb,然后:

rlwrap -H .perl_history perl -d ...

Add parse_options("TTY=/dev/stdin ReadLine=0"); to .perldb, then:

rlwrap -H .perl_history perl -d ...
晌融 2024-11-23 10:51:41
$ export PERLDB_OPTS=HistFile=$HOME/.perldb.history 
$ export PERLDB_OPTS=HistFile=$HOME/.perldb.history 
没︽人懂的悲伤 2024-11-23 10:51:41

我执行了以下操作:

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,并收到此警告/错误

perldb: Must not source insecure rcfile /home/ics/.perldb.
        You or the superuser must be the owner, and it must not 
        be writable by anyone but its owner.

6) 我保护 ~/.perldb code> 与所有者 rw chmod 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/error

perldb: Must not source insecure rcfile /home/ics/.perldb.
        You or the superuser must be the owner, and it must not 
        be writable by anyone but its owner.

6) I protected ~/.perldb with owner rw chmod 700 ~/.perldb, and the error went away.

§对你不离不弃 2024-11-23 10:51:40

我这样做的方法是在我的 ~/.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文