将 json 文件中的字符串替换为另一个文本文件的内容

发布于 2025-01-19 04:13:54 字数 234 浏览 1 评论 0原文

我正在尝试使用 sed 将 text.json 中的字符串“temp”替换为 anotherfile.txt 的内容,

到目前为止我已经:

sed -e '/"temp"/{r anotherfile.txt' -e 'd;}' ./text.json >  $tmp && mv $tmp ./text.json

但是这替换了整行,我只想替换该字符串。

i'm trying to use sed to replace the string "temp" inside text.json with the contents of anotherfile.txt,

so far I have :

sed -e '/"temp"/{r anotherfile.txt' -e 'd;}' ./text.json >  $tmp && mv $tmp ./text.json

however this replaces the entire line, I only want to replace the string.

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

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

发布评论

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

评论(1

月朦胧 2025-01-26 04:13:54

您可以使用 $(somecommand) 在命令中使用命令输出。请注意,您不能使用单引号 ',因为它们会阻止 shell 扩展。

例子:

╰─$ echo "some text here" > foo
╰─$ echo "some other text" > bar
╰─$ cat foo && cat bar                
some text here
some other text
╰─$ sed -e "s/text/$(cat bar)/g" foo                                                                                                                                     
some some other text here


You can use $(somecommand) to use a commands output in your command. Note that you cannot use single quotes ' as they would prevent shell expansion.

Example:

╰─$ echo "some text here" > foo
╰─$ echo "some other text" > bar
╰─$ cat foo && cat bar                
some text here
some other text
╰─$ sed -e "s/text/$(cat bar)/g" foo                                                                                                                                     
some some other text here


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