代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/359567/10137483
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/163340/10165671
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/163340/10165689
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/357508/10208199
awk mkkeyname.awk
# $Id: MKkeyname.awk,v 1.24 2002/09/01 19:43:34 tom Exp $
##############################################################################
# Copyright (c) 1999-2001,2002 Free Software Foundation, Inc.
www.eeworm.com/read/357508/10208206
awk mkunctrl.awk
# $Id: MKunctrl.awk,v 1.9 2001/06/02 23:59:20 skimo Exp $
##############################################################################
# Copyright (c) 1998,2000,2001 Free Software Foundation, Inc.
www.eeworm.com/read/357508/10208284
awk mknames.awk
# $Id: MKnames.awk,v 1.11 2000/12/09 23:46:13 tom Exp $
BEGIN {
print "/* This file was generated by MKnames.awk */" > "namehdr"
print "" > "namehdr"
print "#include " >
www.eeworm.com/read/357508/10208316
awk mkcaptab.awk
#!/bin/sh
# $Id: MKcaptab.awk,v 1.12 2000/12/10 00:14:12 tom Exp $
AWK=${1-awk}
DATA=${2-../include/Caps}
cat
www.eeworm.com/read/280395/10333093
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 sectio
www.eeworm.com/read/279403/10440258
awk splitrayden.awk
# awk -script to split ray-density tensor output file from
# velsort (raydenxx.xx.xyz) into class-files for plotting
#
# classes are a combination of ray distr.(=qual)
# and total weighted ray length
www.eeworm.com/read/423515/10555225
awk rate.awk
(FNR==1){ day_off=$1; t1=$2; o1=$5; f1=$7}
{ t2=($1-day_off)*86400+$2; o2=$5; f2=$7; if (f2!=f1) fwarn=1}
END{
print "delta-t",t2-t1,"seconds"
print "delta-o",o2-o1,"useconds"
if