Perl:循环遍历文件并替换

发布于 2024-07-23 10:50:42 字数 75 浏览 8 评论 0原文

我只是想读入日志文件,进行搜索和替换,然后将更改写入同一日志文件。

在 Perl 中执行此操作的最佳实践方法是什么?

I simply wanna read in a logfile, do a search and replace, and then write out the changes to that same logfile.

What's the best practice way of doing this in Perl?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

埖埖迣鎅 2024-07-30 10:50:42

我通常为此编写一个单行代码:

perl -i -pe 's/some/thing/' log.file

请参阅 这里

I normally code up a one liner for this:

perl -i -pe 's/some/thing/' log.file

See Here

想你的星星会说话 2024-07-30 10:50:42

这通常通过一行代码完成:

perl -pi.bak -e "s/find/replace/g" <file>

注意 -i.bak 部分 - 这将创建一个扩展名为 .bak 的备份文件。 如果你想在没有网络的情况下玩,你可以这样做来覆盖现有文件而不进行备份:

perl -pi -e "s/find/replace/g" <file>

This is often done with a one-liner:

perl -pi.bak -e "s/find/replace/g" <file>

Note the -i.bak portion -- this creates a backup file with the extension .bak. If you want to play without a net you can do this to overwrite the existing file without a backup:

perl -pi -e "s/find/replace/g" <file>
明媚如初 2024-07-30 10:50:42

或者你可以使用 sed (我知道......你问过 perl):

sed -i 's/find/replace/g' <file>

or you can use sed (I know... you asked about perl):

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