Best EEM practice for extracting a line from show command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2020 06:07 PM
I am trying to write an EEM script to extract a line from the output of a show command.
What is the regexp pattern that can help me extract the first line of output? (til the first "\n"). I tried many regexp patterns to no avail.
Just FYI, I ended up with a for loop. It works but not very elegant:
event manager applet test
event none
action 1 cli command "enable"
action 2 cli command "show run | i ip route 1.2.3.4"
action 3 foreach line "$_cli_result" "\n"
action 4 break
action 5 end
action 6 puts "$line"
also, the $line variable contains the "\n" in the end. I would match prefer using string match or regexp action to extract output with 1 line.
- Labels:
-
Network Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2020 10:30 AM
answering my own question,
action 3 regexp "^ip route[^\n]*" "$_cli_result" match
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2020 11:41 AM
Looks like the solution is not the best, when there are more than 1 match. The $match will contain a trailing "\n". But if there is only 1 match, the $match will not contain a trailing "\n".
