recherche

Maison  >  Questions et réponses  >  le corps du texte

linux - Écrire un script pour modifier les informations de configuration dans le fichier, erreur d'exécution

Il y a principalement trois fichiers test.cnf test.sh test.txt
Exécutez test.sh pour lire la configuration de test.cnf pour modifier le contenu de test.txt Lors de l'exécution, la configuration a été lue avec succès mais n'a pas été trouvée. quand sed a été exécuté.
sed ici est juste pour le débogage sans modifier test.txt, il affiche simplement les résultats de 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}}

Des erreurs d'exécution sont affichées lors du débogage ;

[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
欧阳克欧阳克2701 Il y a quelques jours808

répondre à tous(1)je répondrai

  • 淡淡烟草味

    淡淡烟草味2017-07-04 13:47:27

     while read a b;do sed -n "s/$a/$b/p" test.txt;done < <(awk -F= '{print ,}' test.cnf)

    Autres méthodes :

    awk -F= -vOFS='=' 'NR==FNR{a[]=;next}{for(i in a)if( ~ i)sub(i,a[i],)}1' test.cnf test.txt

    répondre
    0
  • Annulerrépondre