代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/205013/15329817
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/205013/15329843
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/202552/15378646
awk agtnum.awk
BEGIN {
AgtNum = 0;
}
{
if ($1 == "s" && $4 == "AGT")
AgtNum++;
}
END{
printf(" Num of AGT pkts: %d \n", AgtNum);
}
www.eeworm.com/read/202552/15378657
awk ptopdelay.awk
s 10.1 _1_ AGT --- 22 tcp 43 [0 2 1 800] ------- [1:0 2:0 30 2] [13 0] 0 0
BEGIN {
highest_packet_id = 0;
}
{
action = $1;
time = $2;
node = $3;
objtype = $4;
reson = $5
www.eeworm.com/read/109611/15553512
awk debflex.awk
# Clarify the flex debug trace by substituting first line of each rule.
# Francois Pinard , July 1990.
#
# Rewritten to process correctly \n's in scanner input.
# BEGIN se
www.eeworm.com/read/106121/15647148
awk stime.awk
$6 !~ /^ack/ && $5 !~ /[SFR]/ {
# given a tcpdump ftp trace, output one line for each send
# in the form
#
# where is the time packet was sent (in seconds with
www.eeworm.com/read/106121/15647155
awk packetdat.awk
BEGIN {
# we need to know (usual) packet size to convert byte numbers
# to packet numbers
if (packetsize
www.eeworm.com/read/106121/15647168
awk atime.awk
$6 ~ /^ack/ && $5 !~ /[SFR]/ {
# given a tcpdump ftp trace, output one line for each ack
# in the form
#
# where is the time packet was acked (in seconds with
#
www.eeworm.com/read/103514/15730053
awk makeman.awk
#!/usr/bin/gawk -f
#
# makeman - make zgv man page from texinfo file.
# Public domain by Russell Marks.
#
# Requires gawk (it uses `gensub' (gawk only?) and `[:blank:]' (POSIX)).
#
# Note that this *I