📄 patch00network.awk
字号:
## patch a 00network.cdf file### Copyright 1984-2004 Wind River Systems, Inc.# All rights reserved. Provided under license only.# Distribution or other use of this software is only# permitted pursuant to the terms of a license agreement# from Wind River Systems (and is otherwise prohibited).# Refer to that license agreement for terms of use.### $Log: patch00network.awk,v $# Revision 1.2 2003/01/23 21:27:12 meister# Fix for INCLUDE_SNMPD appearing as the last entry in a component group# never got committed to CVS. Fix that now.#### modification history# --------------------# 01a,02dec03,job update copyright information#BEGIN { copy = 1 ; usrnetappinit = 0 }$1 == "Component" && $2 == "INCLUDE_SNMPD" { copy = 0 }$1 == "InitGroup" && $2 == "usrNetAppInit" { usrnetappinit = 1 }$1 == "}" && copy == 0 { copy = 1 ; next }$1 == "INCLUDE_SNMPD" && $2 == "\\" && usrnetappinit == 1 { print " INCLUDE_WINDMANAGE_SNMP_CORE \\" ; usrnetappinit = 0 ; next }$1 == "INCLUDE_SNMPD" && $2 == "" && usrnetappinit == 1 { print " INCLUDE_WINDMANAGE_SNMP_CORE" ; usrnetappinit = 0 ; next }copy == 1 { print $0 }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -