代码搜索:Awk
找到约 3,459 项符合「Awk」的源代码
代码结果 3,459
www.eeworm.com/read/362022/10022168
awk getratio.awk
# 初始化设定
BEGIN {
sendLine = 0;
recvLine = 0;
fowardLine = 0;
}
# 应用层收到包
$0 ~/^s.* AGT/ {
sendLine ++ ;
}
# 应用层发送包
$0 ~/^r.* AGT/ {
recvLine ++ ;
}
# 路由层转发包
$0 ~/^f.* R
www.eeworm.com/read/361542/10047235
awk getnoderecv.awk
# getData.awk
BEGIN {
if(step ==0)
step = 10;
base = 0;
start = 0;
bytes = 0;
total_bytes = 0;
max = 0;
calc = 0;
}
$0 ~/^s.* AGT/ {
if (base == 0 && $3 == ("_" src "_")) {
base = $2;
www.eeworm.com/read/361542/10047244
awk getratio.awk
# 初始化设定
BEGIN {
sendLine = 0;
recvLine = 0;
fowardLine = 0;
}
# 应用层收到包
$0 ~/^s.* AGT/ {
sendLine ++ ;
}
# 应用层发送包
$0 ~/^r.* AGT/ {
recvLine ++ ;
}
# 路由层转发包
$0 ~/^f.* R
www.eeworm.com/read/164708/10092385
awk memleak.awk
#
# This script looks for memory leaks by analyzing the output of "sqlite"
# when compiled with the MEMORY_DEBUG=2 option.
#
/[0-9]+ malloc / {
mem[$6] = $0
}
/[0-9]+ realloc / {
mem[$8] = "";
www.eeworm.com/read/164708/10092404
awk opcodedoc.awk
#
# Extract opcode documentation for sqliteVdbe.c and generate HTML
#
BEGIN {
print ""
print "SQLite Virtual Database Engine Opcodes"
print ""
}
/ Opcod
www.eeworm.com/read/360251/10105740
awk rfcd.awk
BEGIN { RFCPATH = "/usr/local/rfc" ; body = 0 ; count = 0 }
/From:/ { retaddr = substr($0, 6); next }
/Subject:/ { rfcnum = substr($0, 9); next }
END { cmd = RFCPATH " " rfcnum;
cmd = cmd " | /u
www.eeworm.com/read/359567/10137307
awk mkopcodeh.awk
#!/usr/bin/awk -f
#
# Generate the file opcodes.h.
#
# This AWK script scans a concatenation of the parse.h output file from the
# parser and the vdbe.c source file in order to generate the opcodes nu
www.eeworm.com/read/359567/10137314
awk addopcodes.awk
#!/usr/bin/awk
#
# This script appends additional token codes to the end of the
# parse.h file that lemon generates. These extra token codes are
# not used by the parser. But they are used by the to
www.eeworm.com/read/359567/10137338
awk memleak.awk
#
# This script looks for memory leaks by analyzing the output of "sqlite"
# when compiled with the SQLITE_DEBUG=2 option.
#
/[0-9]+ malloc / {
mem[$6] = $0
}
/[0-9]+ realloc / {
mem[$8] = "";
www.eeworm.com/read/359567/10137366
awk opcodedoc.awk
#
# Extract opcode documentation for sqliteVdbe.c and generate HTML
#
BEGIN {
print ""
print "SQLite Virtual Database Engine Opcodes"
print ""
}
/ Opcod