Reputation: 307
Hi I have this text file.
Physical interface: ge-0/0/3, Enabled, Physical link is Up
Interface index: 132, SNMP ifIndex: 504
Description: # SURVEILLANCE CAMERA #
Link-level type: Flexible-Ethernet, Media type: Copper, MTU: 9000,
LAN-PHY mode, Link-mode: Full-duplex, Speed: 1000mbps, BPDU Error: None,
.....few more lines
Physical interface: ge-0/1/0, Enabled, Physical link is Down
Interface index: 133, SNMP ifIndex: 505
Link-level type: Ethernet, Media type: Fiber, MTU: 1514, LAN-PHY mode,
Speed: 1000mbps, BPDU Error: None, MAC-REWRITE Error: None,
.....few more lines
Physical interface: ge-0/1/3, Enabled, Physical link is Up
Interface index: 136, SNMP ifIndex: 508
Description: # TO CSS_I-TN-CHNN-ENB-I099 #
Link-level type: Flexible-Ethernet, Media type: Fiber, MTU: 8000,
LAN-PHY mode, Speed: 1000mbps, BPDU Error: None, MAC-REWRITE Error: None,
... few more lines
and so on....
Now If Physical link is Up & value of MTU is 9000 then only I need to replace both the corresponding lines as.
<Pass>Physical interface: ge-0/0/3, Enabled, Physical link is Up
&
<Pass>Link-level type: Flexible-Ethernet, Media type: Fiber, MTU: 9000,
In every other situation it will be <Fail>
in place of <Pass>
. these values lie in different line that why I am not getting any idea of using sed or anything else..please help... here is the expected output..
<Pass>Physical interface: ge-0/0/3, Enabled, Physical link is Up
Interface index: 132, SNMP ifIndex: 504
Description: # SURVEILLANCE CAMERA #
<Pass>Link-level type: Flexible-Ethernet, Media type: Copper, MTU: 9000,
LAN-PHY mode, Link-mode: Full-duplex, Speed: 1000mbps, BPDU Error: None,
.....few more lines
<Fail>Physical interface: ge-0/1/0, Enabled, Physical link is Down
Interface index: 133, SNMP ifIndex: 505
<Fail>Link-level type: Ethernet, Media type: Fiber, MTU: 1514, LAN-PHY mode,
Speed: 1000mbps, BPDU Error: None, MAC-REWRITE Error: None,
.....few more lines
<Fail>Physical interface: ge-0/1/3, Enabled, Physical link is Up
Interface index: 136, SNMP ifIndex: 508
Description: # TO CSS_I-TN-CHNN-ENB-I099 #
<Fail>Link-level type: Flexible-Ethernet, Media type: Fiber, MTU: 8000,
LAN-PHY mode, Speed: 1000mbps, BPDU Error: None, MAC-REWRITE Error: None,
... few more lines
and so on....
Upvotes: 1
Views: 184
Reputation: 44073
With sed:
sed '/Physical link is/ { :a /MTU:/! { N; ba; }; /Physical link is Up.*MTU: 9000/ { s/\(.*\n\)\s*/<Pass>\1<Pass>/; b; }; s/\(.*\n\)\s*/<Fail>\1<Fail>/; }' filename
That is:
/Physical link is/ { # Block start found
:a
/MTU:/! { # fetch lines until we find the MTU
N
ba
}
/Physical link is Up.*MTU: 9000/ { # If link is up and MTU 9000
s/\(.*\n\)[[:space:]]*/<Pass>\1<Pass>/ # insert Pass markers
b
# we're done.
}
s/\(.*\n\)[[:space:]]*/<Fail>\1<Fail>/ # otherwise insert Fail markers
}
Note that with BSD sed, this cannot be used as a one-liner because of the b
instructions. In that case, put the expanded (without comments, for BSD sed is easily confused) code in a file, say foo.sed
, and use sed -f foo.sed filename
. I've already replaced the other GNU-ism (\s
) with its POSIX equivalent ([[:space:]]
) there.
To keep the whitespaces at the beginning of the MTU line, remove the \s
or [[:space:]]
. To place the whitespaces before the result marker, put the \s
or [[:space:]]
inside the capturing group (i.e., \(.*\n\s*\)
).
Also note: This assumes that every interface description has an MTU field.
Alternatively, you might try this awk script:
awk -v RS='Physical interface:' -F '\n' -v OFS='\n' '{ result = "<Fail>" } /Physical link is Up/ && /MTU: 9000/ { result = "<Pass>" } NR != 1 { for(i = 1; i <= NF; ++i) { if(index($i, "MTU:")) { sub(/^ */, result, $i) } } print result RS $0 }' filename
This splits the file into records at Physical interface:
and the records into fields at newlines. Then:
{ result = "<Fail>" } # result is Fail
/Physical link is Up/ && /MTU: 9000/ { # unless link is up and MTU 9000
result = "<Pass>"
}
NR != 1 { # the first record is the empty string
# before the first actual record, so
# we remove it.
for(i = 1; i <= NF; ++i) { # wade through the fields (lines)
if(index($i, "MTU:")) { # find the MTU line
sub(/^ */, result, $i) # put the marker there. To keep the
# whitespace, use $i = result $i
# instead, or sub(/^ */, "&" result, $i)
# to keep the spaces before the marker.
}
}
print result RS $0 # once done, print the whole shebang.
# We have to reinsert the record
# separator because it was removed
# by the splitting.
}
Note that a multi-character RS
is not strictly POSIX-conforming. The most common awks (gawk and mawk) support it, though. Notably, BSD awk does not.
Upvotes: 3
Reputation: 440679
Try the following awk
command, which should be POSIX-compliant and preserves leading whitespace:
awk '
/ Physical link is / { ++count }
/, MTU: / {
tag = (blockLines[1] ~ /Up$/ && $0 ~ /, MTU: 9000,/ ? "<Pass>" : "<Fail>")
sub(/^/, "&" tag, blockLines[1])
sub(/^ +/, "&" tag)
for (i = 1; i < count; ++i) print blockLines[i]
count = 0
}
count > 0 { blockLines[count++] = $0; next }
{ print }
' file
The basic idea is:
Annotated version of the Awk script only:
/ Physical link is / { ++count } # Start of block
/, MTU: / { # End of block - fail/pass can now be determined
# Determine whether to apply a fail or a pass tag based on the
# first and last line in the block.
tag = (blockLines[1] ~ /Up$/ && $0 ~ /, MTU: 9000,/ ? "<Pass>" : "<Fail>")
# Prepend tag to 1st line in block
sub(/^/, "&" tag, blockLines[1])
# Prepend tag to last line in block, preserving leading whitespace.
sub(/^ +/, "&" tag)
# Print all lines in block (except for last one).
for (i = 1; i < count; ++i) print blockLines[i]
# Reset block line counter.
count = 0
}
# Inside block: collect lines, do not print yet.
count > 0 { blockLines[count++] = $0; next }
# Print last line in block and lines outside of blocks.
{ print }
Upvotes: 2