इस sed कमांड का क्या अर्थ है: `? / @ / {h; s / परीक्षण / अगला / 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.

आपके उत्तर के माध्यम से मेरी समस्या को पूरी तरह से हल किया। धन्यवाद ^ ^
थॉमस क्वोन

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 के लिए कमांड सारांश देखें


बहुत बहुत धन्यवाद :) आपका जवाब मेरे लिए वास्तव में उपयोगी है। ^ ^
थॉमस क्वोन
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.