У меня есть два файла
файл1:
world,11
файл2:
hello welcome to the ("12345,67")
Я пытаюсь заменить вышесказанное "(12345,67)"
на"world,11"
решение1
Судя по тому, что вы написали, я думаю, что этот код решит вашу проблему:
replacement=`cat replacement.txt`
content=`cat content.txt`
pattern="pattern"
echo "${content//$pattern/$replacement}" # all strings matching will be replaced with $replacement
echo "${content/$pattern/$replacement}" # the first string matching the pattern will be replaced