#ciscoconfparse-cli
用于 Cisco IOS 配置的类似 Grep 的工具
基于
#安装
sudo cp ciscoconfparse-cli.py /usr/local/bin/ciscoconfparse-cli.py
sudo ln -s /usr/local/bin/ciscoconfparse-cli.py /usr/local/bin/cigrep
#例子
##查找所有VLAN标记的接口
$ cigrep interface "encapsulation dot1q" example.txt
interface Ethernet0/1.10
interface Ethernet0/1.20
##查找所有 PPP 和 VLAN 标记的接口
是的,支持正则表达式;-)
$ cigrep ^interface "encapsulation (dot1
2021-06-20 21:03:17
3KB
Python
1