CShell 单词替换

发布于 2024-08-08 23:42:29 字数 237 浏览 6 评论 0原文

我有一个简短的文本文件,其语法如下:

FileName: some name
Version: 3
Length: 45
hello, this is an irrelevant, unimportant text.
So is this line.

现在,我正在尝试编写一个脚本,用给定的新编号替换版本号。

有人知道怎么做吗?我真的不介意它很丑

,谢谢 乌迪

I have a short text file with the following syntax:

FileName: some name
Version: 3
Length: 45
hello, this is an irrelevant, unimportant text.
So is this line.

Now, I'm trying to write a script that replace the version number with a given new number.

Anyone knows how to? I really don't mind it to be ugly

thanks,
Udi

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

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

发布评论

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

评论(2

童话 2024-08-15 23:42:29

为什么不直接使用 sed 呢?

sed -i 's/^Version: .*$/Version: 99/' foo.txt

Why not just use sed?

sed -i 's/^Version: .*$/Version: 99/' foo.txt
空城旧梦 2024-08-15 23:42:29

我不知道如何在csh中做到这一点。然而,冒着被认为是那些一有机会就告诉您使用他们最喜欢的东西的烦人的风险,有比使用 csh 更好的方法。传统的 unix 命令 sed 擅长做这件事,或者像 Perl 这样的语言也很有用。

perl -p -i -e 's/Version: 3/Version: 4/g;' myfile

应该这样做。

I don't know how to do it in csh. However, at the risk of coming across as one of those annoying people who tells you to use their favourite thing at every opportunity, there are better ways than using csh. The traditional unix command sed is good at this stuff, or a language like Perl is also useful.

perl -p -i -e 's/Version: 3/Version: 4/g;' myfile

should do it.

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