gpt4 book ai didi

linux - 如何使用 sed 替换一行中的第三个单词

转载 作者:IT王子 更新时间:2023-10-29 00:51:30 24 4
gpt4 key购买 nike

这是我学习sed过程中的第3篇文章。我有一个假设的要求。我希望能够用“was”替换每行中的第 3 个单词,其中单词由空格分隔。

bash$ cat words
hi this is me here
hi this is me again
hi this is me yet again
hi this is me

期望的输出:

hi this was me here
hi this was me again
hi this was me yet again
hi this was me

请大家帮忙看看如何用 sed 来做。我尝试了一些执行指令,但没有用。谢谢,

猎豹

我找到了!我找到了!

好的,我终于得到了正确的指示。这有效:

sed -e 's/[^ ]*[^ ]/was/3' words

最佳答案

如果你不关心格式化,这是一个更简单的方法

$ awk '{$3="was"}1' file
hi this was me here
hi this was me again
hi this was me yet again
hi this was me

关于linux - 如何使用 sed 替换一行中的第三个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3275274/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com