Es gibt hauptsächlich drei Dateien test.cnf test.sh test.txt
Führen Sie test.sh aus, um die Konfiguration von test.cnf zu lesen und den Inhalt von test.txt zu ändern. Während der Ausführung wurde die Konfiguration erfolgreich gelesen, aber nicht gefunden als sed hingerichtet wurde.
sed hier dient nur zum Debuggen, ohne test.txt zu ändern, es zeigt nur die Ergebnisse von test.txt an
[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}}
Ausführungsfehler werden während des Debuggens angezeigt;
[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
其它方法: