I have a text file like this :
Stone, John
Priya, Ponnappa
Wong, Natalie
Stanbrige, Natalie
Lee-Walsh, Natalie
Li, Natalie
Ithya, Ruveni
French, Tamzyn
Simoes, Salome
Virtue, Jackie
Campbell-Gillies,Jackie
Anderson, John
Kazantzis, John
Blair, Ruveni
Meldrum, Jackie
Smith, Maureen
Burch, Ruveni
Harry, Verona
Andrews, Ruveni
Ellawala, Ruveni
I was able to do it with sed, but i don't found it pretty :
sed 's/Ruveni/Ahmed/g' | sed 's/Verona/Sandro/g' | sed 's/Natalie/Chloé/g' | sed 's/John/Holly/g' | sed 's/Jackie/Melissa/g'
This will do the work by replacing the name, is there a more clean way to do it with sed or better with awk ?
Thank you soo much