この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

どういう意味;/@/{h;s/test/next/g;x;G}ですか?

回答:


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.

あなたの答えを通して私の問題を完全に解決しました。ありがとう^^
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
}

したがって、@を含むすべての行について、パターンスペースの変更されたバージョンが印刷され、その後にオリジナルが続きます(ホールドスペースには変更されていないバージョンが含まれます)。

Sedのコマンドの概要を参照してください


どうもありがとうございました:)あなたの答えは私にとって本当に役に立ちます。^^
トーマス・クォン
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.