Perl 的自动分割功能和就地编辑

发布于 2024-10-18 01:37:57 字数 238 浏览 4 评论 0原文

我刚刚完成一项任务,需要将制表符分隔文件中的每个第三个值替换为固定值。我想它可以在 Unix shell 上用 Perl 完成,所以

$perl -a -n -i  -F'/\t/' -e '$F[2]="THE FIXED VALUE";print join "\t", @F' bla.txt

我只是想知道这是否是“正确”的方法,或者是否有更好的方法(对于目前缺乏更好的定义)来做到这一点?

I just had a task in where I needed to replace each 3rd value in a tabulator separated file with a fixed value. I guess it can be done in Perl on a Unix shell like so

$perl -a -n -i  -F'/\t/' -e '$F[2]="THE FIXED VALUE";print join "\t", @F' bla.txt

I just wanted to know if this is a "correct" way, or if there is a better (for a currently lacking definition of better) to do it?

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

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

发布评论

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

评论(1

温折酒 2024-10-25 01:37:57

我认为你的一句话是合理且可读的。还有很多方法可以做到这一点。我会堆叠 perlrun 选项并节省一些击键:

perl -F'\t' -i -ape'$F[2]="THE FIXED VALUE"; $_ = join "\t", @F' bla.txt

遗憾的是 $, 没有使用 -F 参数填充,因此仍然存在重复。

I think your one-liner is reasonable and readable. There are many more ways to do it. I would stack the perlrun options and save a few keystrokes:

perl -F'\t' -i -ape'$F[2]="THE FIXED VALUE"; $_ = join "\t", @F' bla.txt

A shame that $, does not get populated with the argument of -F, so there's still a piece of repetition.

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