gpt4 book ai didi

shell - 如何使用 shell 脚本查找和替换属性文件中的属性?

转载 作者:行者123 更新时间:2023-12-04 16:17:55 25 4
gpt4 key购买 nike

我的属性文件具有属性 WLS_Home={服务器路径}如何用脚本变量中的另一个路径替换它?

最佳答案

您可以使用 sed:

sed '/^WLS_Home=/s@=.*$@='"$new_path"@g

其中 new_path 是包含新路径的变量。您不会希望使用 / 作为 sed 中的分隔符,因为它可能会出现在路径中。您可以使用 shell 重定向(即 sed ... file > tmp-file && mv tmp-file file)或 -i(如果您的 sed 支持该非标准功能。

关于shell - 如何使用 shell 脚本查找和替换属性文件中的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14183326/

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