Highlighting your search with grep

By ubaumann, Fri 17 July 2020, modified Fri 17 July 2020, in category Brief Byte

tools

grep can be used for highlighting your search. Use the extended-regexp option and add "*|" (match everything) to your search pattern.

~# ovs-vsctl show | grep -E "*|vnet63|vnet60"

highlight search term with grep