Substituição de dados em arquivos de texto [closed]

0

Eu tenho dois arquivos

arquivo1:

 world,11

arquivo2:

hello welcome to the ("12345,67")

Estou tentando substituir o "(12345,67)" com "world,11"

    
por Sau rabh 27.10.2016 / 14:19

1 resposta

1

De acordo com o que você postou, acho que esse código resolverá seu problema:

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
    
por 27.10.2016 / 21:16