AWK Script Issue insert newline for a regular expression match


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting AWK Script Issue insert newline for a regular expression match
# 29  
Old 11-30-2010
Network Awk script issue : range of regular expression

Thanks Ctgsnb ,

I tried below code and it also worked well

sed -e 's/\(^ *pin[^ ]*\)/#\1/g' ro.lib | tr '#' '\n' > temp1

Now I am having issue with range of the regular patterns to be matched

For example having a file like this

Code:
 
File1
 
##############
 
pin RXA {
input 
output 
}
 
pin RXB {
input 
output 
}
 
pin RXC {
input 
output 
}
 
pin RXD {
input 
output 
}
 
pin RXE {
input 
output 
}
 
pin RXF {
input 
output 
}

Now I need to match range of the regular expression like RXB to RXE and delete their corresponding blocks

Code:
 
Output 
 
pin RXA {
input 
output 
}
 
pin RXF {
input 
output 
}

I tried to use below script
Code:
sed -e '/RXB/,/RXE/d'

but will not delete the whole content of the RXE Block till RXE Regular expression line it will match and input , output and } will remain as it is

One way is to Remove the black lines between blocks of RXB to RXE
like this
Code:
 
input
 
pin RXA {
input 
output 
}
 
pin RXB {
input 
output 
}
 pin RXC {
input 
output 
}
 pin RXD {
input 
output 
}
 pin RXE {
input 
output 
}
 
pin RXF {
input 
output 
}

and use the script

Code:
 
sed -e '/RXB/,/^$/d' input

but how to do that in both the situations for matching with range of regular expression and deleting the blank lines for the range of regular expression matches
# 30  
Old 11-30-2010
Code:
sed '/RX[BE]/,/^ *$/d' in

Code:
# sed '/RX[BE]/,/^ *$/d' in
pin RXA {
input
output
}

pin RXC {
input
output
}

pin RXD {
input
output
}

pin RXF {
input
output
}
#

This User Gave Thanks to ctsgnb For This Post:
# 31  
Old 11-30-2010
Hi Ctgsnb ,

Thanks for the reply

but I want to delete chunk of Blocks from a range of Regular expression RXB to RXE

Reframing the code again

Code:
 
pin RXA {
input 
output 
}

pin RXTRY {
input 
output 
}
pin TXCRY {
input 
output 
}
pin BXDRY {
input 
output 
}
pin MTRE {
input 
output 
}

pin RXF {
input 
output 
}

Matching the regular expression from range RXTRY to MTRE and delete the blocks

Output

Code:
 
pin RXA {
input 
output 
}

pin RXF {
input 
output 
}

Thanks
Jaita
# 32  
Old 11-30-2010
Code:
sed '/RX[B-E]/,/^ *$/d' in

Code:
# sed '/RX[B-E]/,/^ *$/d' in
pin RXA {
input
output
}

pin RXF {
input
output
}

# 33  
Old 11-30-2010
Network awk script issue

Hi

I tried this one to the below code but here it is deleting everything

Code

Code:
 
pin RX_R_01 {
input 
output 
}
 
pin RX_R_02 {
input 
output 
}
 
pin RX_R_03 {
input 
output 
}
 
pin RX_R_04 {
input 
output 
}
 
pin RX_R_05 {
input 
output 
}
 
pin RX_R_06 {
input 
output 
}


Script

Code:
 
sed '/RX_[R_02-R_05]/,/^ *$/d' input

Wanted to delete the Block from RX_R_02 to RX_R_5

to give out the output

Output
Code:
 
 
pin RX_R_01 {
input 
output 
}

pin RX_R_06 {
input 
output 
}

but I am getting empty file , it is deleting everything
# 34  
Old 11-30-2010
Code:
sed '/RX_R_0[2-5]/,/^ *$/d' input

# 35  
Old 12-02-2010
Franklin ,
Your code is not clear to me

Code:
 
awk '/RXH/{f=1}; f{c+=/}/?1:/{/?-1:0}; !f; f && !c{f=0}' file

Could not understand how the flags will be set , unset and counter will be incremented and decremented

Suppose I am having a file like this
Code:
 
 
FILE 1
 pin ykdh {
 ndn ndn 
 hdjhd jd 
 } 
 pin rtrx {
 in nmd
 mdkd kd
 }
 pin rtry {
 im dnd
 dnd mdmd
}
 pin hdh {
 ndn ndn 
 hdjhd jd 
 }
and I am applying the below script 
awk '/rxt/{f=1}; f{c+=/}/?1:/{/?-1:0}; !f; f && !c{f=0}' file
it is giving me a right output 
output 
pin ykdh {
 ndn ndn 
 hdjhd jd 
 } 
pin hdh {
 ndn ndn 
 hdjhd jd 
 }

But if I am changing a small parameter in the FILE1 { to ]

Code:
 
FILE2 
pin ykdh [
 ndn ndn 
 hdjhd jd 
 ] 
 pin rtrx [
 in nmd
 mdkd kd
 ]
 pin rtry [
 im dnd
 dnd mdmd
]
 pin hdh [
 ndn ndn 
 hdjhd jd 
 ]

and applying below script

Code:
 
awk '/rxt/{f=1}; f{c+=/]/?1:/[/?-1:0}; !f; f && !c{f=0}' file

it is not giving the output and script getting failed
Could not understand the script as such ,
after matching with the regular expression rxt f is getting set and assigned to value = 1
after that could not able to understand the code
Code:
f{c+=/]/?1:/[/?-1:0}; !f; f && !c{f=0}

' setting and unsetting of the flags , incrementing and decrementing
the counters and prining the relevant lines
Please make me understand this code , how it works

Thanks
Jaita
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Insert a newline after match in files of specific name under some subdirectories?

Hi I'd like to add the newline: \tuser: nobody", or "<TAB>user: nobody to all files named: docker-compose.ymlin subfolders of pwd with names beginning with 10-20. Within these files, I'd like to find the line (there'll only be one) containing: command: celery workerNOTE: As far as... (2 Replies)
Discussion started by: duncanbetts
2 Replies

2. Shell Programming and Scripting

Regular expression match

echo 20110101 | awk '{ print match($0,/^((17||18||19||20)|)-*(|0|1)-*(|0||3)$/)) I am getting a match for the above, where as it shouldn't, as there is no hyphen in the echoed date. Another question is what is the difference between || and | in the above statement (4 Replies)
Discussion started by: tostay2003
4 Replies

3. Shell Programming and Scripting

Help with awk script (syntax error in regular expression)

I've found this script which seems very promising to solve my issue: To search and replace many different database passwords in many different (.php, .pl, .cgi, etc.) files across my filesystem. The passwords may or may not be contained within quotes, single quotes, etc. #!/bin/bash... (4 Replies)
Discussion started by: spacegoose
4 Replies

4. Shell Programming and Scripting

regular expression exact match

hi everyone suppose we have two scenario echo ABCD | grep \{4\} DATE echo SYSDATE | grep \{4\} SYSDATE i want to match the string of four length only please help (5 Replies)
Discussion started by: aishsimplesweet
5 Replies

5. Shell Programming and Scripting

AWK script issue for the part regular expression

Hi I am having a file as shown below FILE 1 TXDD00, TXDD01, TXDD02, TXDD03, TXDD04, TXDD05, TXDD06, TXDD07, TXDD08, TXDD09, TXDD10, TXDD11, TXDD12, TXDD13, TXDD14, TXDD15, TXDD16, TXDD17, TXDD18, TXDD19, TXDDCLK, TXDJTAGAMPL0, TXDJTAGAMPL1,... (3 Replies)
Discussion started by: jaita
3 Replies

6. Shell Programming and Scripting

regular expression match

I am trying to match a similar line using grep with regular expression the line is /remote/mac/pbbbb/abc/def/hij/hop/include/abc/tif/element/test/testfiles/Office.cpp:57: const OfficeType& getType().get() const; I just need to extract the bold characters using grep with regular expression.... (5 Replies)
Discussion started by: prasbala
5 Replies

7. Shell Programming and Scripting

regular expression to match repeated appearance

Hi all, I am looking for a regex syntax to match repeated appearance. Likes, ']+]+' matches for string '65A SOME MORE AND 78B' Now, this gets messy if I need to extract all such repeated appearance. I don't want to write ] four or five times for matching repeated appearance. Thanks in... (2 Replies)
Discussion started by: guruparan18
2 Replies

8. Shell Programming and Scripting

Regular expression match

Hi all, any idea how to match the following: char*<no or any string or space> buf and char *<no or any string or space> buf i need to capture the buf characters too. currently i need two checks to cover this: #search char* <any string> buf or char *<any string> buf @noarray =... (2 Replies)
Discussion started by: ChaMeN
2 Replies

9. UNIX for Dummies Questions & Answers

Regular Expression - match 'b' that follows 'a' and is at the end of a string

Hi, I'm struggling with a regex that would match a 'b' that follows an 'a' and is at the end of a string of non-white characters. For example: Line 1: aba abab b abb aab bab baa I can find the right strings but I'm lacking knowledge of how to "discard" the bits that precede bs.... (2 Replies)
Discussion started by: machinogodzilla
2 Replies

10. UNIX for Dummies Questions & Answers

Exact match with regular expression

Hi I have a file with data arranged into columns. The first column is the chromosome name. When I use grep to subset only rows with chr1, I get chr1 but also chr10, chr11,.. How do I get only rows with chr1? grep chr1 filein > fileout head fileout chr1 59757841 chr11 108258691 ... (2 Replies)
Discussion started by: jdhahbi
2 Replies
Login or Register to Ask a Question