এখানে sed
সলিউশন ( -n
যেমন কোনও স্বয়ং-মুদ্রণ সহ নয়) যা স্বেচ্ছাসেবী ইনপুট নিয়ে কাজ করে:
sed -n '/SomeTestAA/!p # if line doesn't match, print it
: m # label m
//{ # if line matches
$!{ # and if it's not the last line
n # empty pattern space and read in the next line
b m # branch to label m (so n is repeated until a
} # line that's read in no longer matches) but
} # nothing is printed
' infile
যেমন একটি ইনপুট সঙ্গে
SomeTestAAXX
SomeTestAAYY
+ one line
SomeTestONE
Message body
EndTest
########
SomeTestTWO
something here
EndTest
SomeTestAABC
+ another line
SomeTestTHREE
EndTest
SomeTestAA
+ yet another line
চলমান
sed -n -e '/SomeTestAA/!p;: m' -e '//{' -e '$!{' -e 'n;b m' -e '}' -e'}' infile
আউটপুট
SomeTestONE
Message body
EndTest
########
SomeTestTWO
something here
EndTest
SomeTestTHREE
EndTest
এটি হ'ল এটি যে লাইনগুলি grep -A1 SomeTestAA infile
নির্বাচন করবে তা সরিয়ে দেয় :
SomeTestAAXX
SomeTestAAYY
+ one line
--
SomeTestAABC
+ another line
--
SomeTestAA
+ yet another line