sed -e 's/72;/72, next_val = 0x11111111;/;/@/{h;s/test/next/g;x;G}'
fmt_vuln.c > fmt_vuln2.c
не могли бы вы рассказать мне, в чем смысл ;/@/{h;s/test/next/g;x;G}
?
;/@/{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.
Таким образом, для каждой строки, содержащей @, будет напечатана измененная версия пространства-образца, за которой следует оригинал (пространство-хранения содержит неизмененную версию).
см. Сводка команд для Sed
источник