Supposons que j'ai un fichier avec des lignes
aaa = bbb
Maintenant, j'aimerais les remplacer par:
aaa = xxx
Je peux le faire comme suit:
sed "s / aaa = bbb / aaa = xxx / g"
Maintenant, j'ai un fichier avec quelques lignes comme suit:
aaa = bbb aaa = ccc aaa = ddd aaa = [autre chose]
Comment puis-je remplacer toutes ces lignes aaa=[something]
par aaa=xxx
utilisant sed ?