gpt4 book ai didi

linux - SED 用文件内容替换字符串

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:05:04 26 4
gpt4 key购买 nike

我有带有环境变量的文件。

带有 e.variables 的文件包含以下内容:

STACK=OVERFLOW
PORT=3000

我的 .txt 文件包含以下内容:

First variable: STACK 
Second variable: PORT

我想使用文件中的值和环境变量替换 .txt 文件中的 STACKPORT

结果:

First variable: OVERFLOW
Second variable: 3000

我尝试使用 SED,但没有成功。

sed -i -e 's/STACK/????/g' .txt

最佳答案

如果 file1 中的变量被导出,您可以执行此操作,这需要 GNU sed 用于 s/pattern/replacement/e 命令

$ cat file1
export STACK=OVERFLOW
export PORT=3000

$ cat file2
First variable: STACK
Second variable: PORT

$ . file1

$ sed -i.bak -r 's/^([^:]+: *)(.+)/printf "%s%s\\n" "\1" "$\2"/e' file2

$ cat file2
First variable: OVERFLOW
Second variable: 3000

关于linux - SED 用文件内容替换字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48632611/

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