sed - substitua a string pelo conteúdo do arquivo

20

Eu tenho dois arquivos: file1 e file2 .

file1 tem o seguinte conteúdo:

---
  host: "localhost"
  port: 3000
  reporter_type: "zookeeper"
  zk_hosts: 
    - "localhost:2181"

file2 contém um endereço IP ( 1.1.1.1 )

O que eu quero fazer é substituir localhost por 1.1.1.1 , para que o resultado final seja:

---
  host: "1.1.1.1"
  port: 3000
  reporter_type: "zookeeper"
  zk_hosts: 
    - "1.1.1.1:2181"

Eu tentei:

sed -i -e "/localhost/r file2" -e "/localhost/d" file1
sed '/localhost/r file2' file1 |sed '/localhost/d'
sed -e '/localhost/r file2' -e "s///" file1

Mas ou eu pego toda a linha substituída, ou o IP vai para a linha depois da que eu preciso modificar.

    
por Jay Kah 08.07.2014 / 20:23

4 respostas

13

Aqui está uma solução sed :

% sed -e "s/localhost/$(sed 's:/:\/:g' file2)/" file1
---
  host: "1.1.1.1"
  port: 3000
  reporter_type: "zookeeper"
  zk_hosts: 
    - "1.1.1.1:2181"

Você deve usar sed -i para fazer a alteração no local.

Se você pode usar awk , aqui está uma maneira de fazer:

% awk 'BEGIN{getline l < "file2"}/localhost/{gsub("localhost",l)}1' file1
---
  host: "1.1.1.1"
  port: 3000
  reporter_type: "zookeeper"
  zk_hosts: 
    - "1.1.1.1:2181"
    
por 08.07.2014 / 21:13
6

Você pode ler o arquivo com a string de substituição usando a substituição do comando shell, antes de usar sed . Então, sed verá apenas uma substituição normal:

sed "s/localhost/$(cat file2)/" file1 > changed.txt

    
por 08.07.2014 / 21:12
1

Tente usar

join file1 file2

e, em seguida, remova todos os campos indesejados.

    
por 08.07.2014 / 20:46
0

Eu também tive esse "problema" hoje: como substituir um bloco de texto pelo conteúdo de outro arquivo.

Eu resolvi isso fazendo uma função bash (que pode ser reutilizada em scripts).

[cent@pcmk-1 tmp]$ cat the_function.sh
# This function reads text from stdin, and substitutes a *BLOCK* with the contents from a FILE, and outputs to stdout
# The BLOCK is indicated with BLOCK_StartRegexp and BLOCK_EndRegexp
#
# Usage:
#    seq 100 110 | substitute_BLOCK_with_FILEcontents '^102' '^104' /tmp/FileWithContents > /tmp/result.txt
function substitute_BLOCK_with_FILEcontents {
  local BLOCK_StartRegexp="${1}"
  local BLOCK_EndRegexp="${2}"
  local FILE="${3}"
  sed -e "/${BLOCK_EndRegexp}/a ___tmpMark___" -e "/${BLOCK_StartRegexp}/,/${BLOCK_EndRegexp}/d" | sed -e "/___tmpMark___/r ${FILE}" -e '/___tmpMark___/d'
}

[cent@pcmk-1 tmp]$
[cent@pcmk-1 tmp]$
[cent@pcmk-1 tmp]$ cat /tmp/FileWithContents
We have deleted everyhing between lines 102 and 104 and
replaced with this text, which was read from a file
[cent@pcmk-1 tmp]$
[cent@pcmk-1 tmp]$
[cent@pcmk-1 tmp]$ source the_function.sh
[cent@pcmk-1 tmp]$ seq 100 110 | substitute_BLOCK_with_FILEcontents '^102' '^104' /tmp/FileWithContents > /tmp/result.txt
[cent@pcmk-1 tmp]$
[cent@pcmk-1 tmp]$
[cent@pcmk-1 tmp]$ cat /tmp/result.txt
100
101
We have deleted everyhing between lines 102 and 104 and
replaced with this text, which was read from a file
105
106
107
108
109
110
    
por 03.12.2018 / 13:09