主要有三个文件 test.cnf test.sh test.txt
执行test.sh去读取test.cnf的配置来修改test.txt的内容,执行过程中读取配置成功但sed执行的时候没找到。
sed这里只是调试没去修改test.txt,只是显示test.txt的结果
[root@localhost /tmp]# head -100 test*
==> test.cnf <==
yy=123
ppp=456
==> test.sh <==
function myconf(){
source test.cnf
awk -F'=' '{print }' test.cnf|while read myline;do sed s/{{$myline}}/${$myline}/g test.txt;done
}
myconf
==> test.txt <==
uuu={{yy}}
ooo={{ppp}}
调试的时候就显示执行错误;
[root@localhost /tmp]# bash -x test.sh
+ myconf
+ source test.cnf
++ yy=123
++ ppp=456
+ read myline
+ awk -F= '{print }' test.cnf
test.sh: line 4: s/{{$myline}}/${$myline}/g: bad substitution
其它方法: