代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/437160/7754237
awk st.awk
BEGIN {
total = 0;
n=0;
}
{
if (($14 == src) && ($15 == dst)) {
if (($1 =="r") && ($4 =="AGT")) {
if (n == 0) start = $2;
total += $8 * 8;
n +=1;
end = $2;
}
}
}
EN
www.eeworm.com/read/437160/7754243
awk cc.awk
{
if(($1=="r")&&(NF==21)){
if($4=="AGT"){
print $14,$15
}
}
}
www.eeworm.com/read/436014/7778962
awk synclang.awk
#!/bin/awk -f
BEGIN {
FS=","
}
/^T_/ {
s2=$2;
for(i = 3; i
www.eeworm.com/read/435917/7780983
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/435917/7780986
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/435917/7780995
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/435917/7781001
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/435917/7781009
awk mkopcodec.awk
#!/usr/bin/awk -f
#
# This AWK script scans the opcodes.h file (which is itself generated by
# another awk script) and uses the information gleaned to create the
# opcodes.c source file.
#
# Opcodes.c
www.eeworm.com/read/435688/7787752
awk dict.awk
#!/bin/gawk -f
#
# Demonstration on how to use the GTK-server with Gnu AWK by STDIN.
# Tested with Gnu AWK 3.1.5 on Zenwalk Linux.
#
# October 25, 2007 by Peter van Eerten.
#--------------------------
www.eeworm.com/read/289562/7805816
awk makeconf.awk
BEGIN {
printf("#include \"apue.h\"\n")
printf("#include \n")
printf("#include \n")
printf("\n")
printf("static void pr_sysconf(char *, int);\n")
printf("static void pr_pathco