¿Cuál es el significado de este comando sed: `; / @ / {h; s / test / next / g; x; G}`?

9
sed -e 's/72;/72, next_val = 0x11111111;/;/@/{h;s/test/next/g;x;G}'
fmt_vuln.c > fmt_vuln2.c

¿podrías decirme cuál es el significado de ;/@/{h;s/test/next/g;x;G}?

Thomas Kwon
fuente

Respuestas:

6
;/@/{h;s/test/next/g;x;G}? 

/@/  search for an `@` sign
{}   for the lines where that is true do this 'block' of code
h    put the pattern match in the hold space
s/   substitute test for next everywhere in the space
g    do the previous substitution for all matches on the line
x    swap the hold with the pattern space
G    Add a new line with the contents of the hold space.
Michael Durrant
fuente
resolvió totalmente mi problema a través de su respuesta. gracias ^^
Thomas Kwon
6
/@/ # For pattern-space containing the character @ do the following
{
  h              # place a copy of the pattern-space into the hold-space
  s/test/next/g  # replace all instances of "test" with "next" in the pattern-space
  x              # swap the pattern-space with the hold-space
  G              # append a newline followed by contents of hold-space to the pattern-space
}

Por lo tanto, para cada línea que contenga una @, se imprimirá la versión modificada del espacio del patrón seguido del original (el espacio de retención contiene la versión no modificada).

ver Resumen del comando para Sed

Peter.O
fuente
Muchas gracias :) tu respuesta es realmente útil para mí. ^^
Thomas Kwon