Comment trouver et remplacer une chaîne dans un fichier à l'aide du script shell
# replaces ALL(g i.e. global) ouccurences of "original_string" with "new_string",
# in the file file_name.ext_name
sed -i 's/original_string/new_string/g' file_name.ext_name
Anxious Alligator