##全文vim替换#为空 注意首行的声明shell#

%s/^#//g


#!/bin/bash


#echo "设备型号和sn码型号###########################################"

grep  -in "Product name"   test/*'M)'*  || grep  -in "Product name"  test/*'B)'*  

#echo "版本号###########################################"

grep  -in  "Boot file is"   test/*'M)'*  || grep  -in  "Boot file is"   test/*'B)'*


#echo "可信主机设置###########################################"

grep  -in  "admin host any"  test/*'M)'*    || grep  -in  "admin host any"  test/*'B)'*

#echo "设备当前日期###########################################"

grep  -in  "Built by buildmaster"  test/*'M)'*    || grep  -in  "Built by buildmaster" test/*'B)'*

#echo "设备当前运行天数###########################################"

grep  -in  "Uptime is"  test/*'M)'*  || grep  -in  "Uptime is"   test/*'B)'*



#echo "cpu平均内存###########################################"

grep  -in  "Average cpu utilization"  test/*'M)'*    || grep  -in  "Average cpu utilization" test/*'B)'*

#echo "cp内存和dp内存###########################################"

grep  -in  "memory"  test/*'M)'*    || grep  -in  "memory" test/*'B)'*

#echo "并发会话###########################################"

sed -n '/show session generic detail/,+2p'  test/*'M)'*   ||  sed -n '/show session generic detail/,+2p'   test/*'B)'*

#echo "设备名字和license期限###########################################"

sed -n '/show license/,+100p'  test/*'M)'*   ||  sed -n '/show license/,+100p'   test/*'B)'*


#echo "设备电源/风扇/温度/状态###########################################"

sed -n '/show environment/,+50p'  test/*'M)'*   ||  sed -n '/show environment/,+50p'   test/*'B)'*


#echo "设备开启功能###########################################"

grep  -in  "enabled"  test/*'M)'*    || grep  -in  "enabled"  test/*'B)'*


#echo "设备HA状态###########################################"

sed -n '/show ha group 0/,+40p'  test/*'M)'*   ||  sed -n '/show ha group 0/,+20p'   test/*'B)'*


#echo "电源状态日志###########################################"

grep  -in  "power"  test/*'M)'*    || grep  -in  "power"  test/*'B)'*


#echo "安全日志###########################################"

sed -n '/show logging security/,+2p'  test/*'M)'*   ||  sed -n '/show logging security/,+2p'   test/*'B)'*