代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/398634/2372402
awk count.awk
# $Id: count.awk,v 10.2 1999/11/21 18:01:42 bostic Exp $
#
# Print out the number of log records for transactions that we
# encountered.
/^\[/{
if ($5 != 0)
print $5
}
www.eeworm.com/read/394755/2453682
scr awk.scr
/.*\(0x3da.*/||/.*\(0x3ba.*/ {
if (v_3da != 1) print "_v_retrace_";
v_3da = 1;
next;
}
/.*\(0x42.*/||/.*\(0x43.*/ {
if (v_4x != 1) print "_timer_";
www.eeworm.com/read/391269/2520772
in amcat.awk.in
BEGIN{o=substr(f,length(f)-1,2);
if(substr(o,1,1)==".") o=substr(o,2,1);
@AMPLOT_CAT_GZIP@
@AMPLOT_CAT_COMPRESS@
@AMPLOT_CAT_PACK@
print "cat"; exit; }
www.eeworm.com/read/391269/2520774
awk amplot.awk
#
# Amanda, The Advanced Maryland Automatic Network Disk Archiver
# Copyright (c) 1992-1998, 2000 University of Maryland at College Park
# All Rights Reserved.
#
# Permission to use, copy, modify, dis
www.eeworm.com/read/389922/2530475
h awk.h
/*
* a small awk clone
*
* (C) 1989 Saeko Hirabauashi & Kouichi Hirabayashi
*
* Absolutely no warranty. Use this software with your own risk.
*
* Permission to use, copy, modify and distribute
www.eeworm.com/read/389028/2544683
awk nstonam.awk
#!/usr/bin/awk
#
# nam fmt:
# eventCode time src dst size attr type conv id
#
# ns fmt:
# eventCode time src dst pktType size flags class src.sport dst.dport
# seqno uid
#
$2 ~ /testName/ {
next;
www.eeworm.com/read/389028/2544799
awk filter.awk
{
if ($1 == "+") {
t = $6
if ($6 == 1000) {
t = 1500
}
print $2, t
}
}
www.eeworm.com/read/389028/2545031
awk seq.awk
BEGIN {
if (dir == "")
dir = ".";
}
{
if ($1 == "-" && ($5 == "tcp" || $5 == "ack")) {
split($9,a,"\.");
saddr = a[1];
sport = a[2];
split($10,a,"\.");
daddr = a[1];
dport = a[2];
if ($5
www.eeworm.com/read/389028/2545032
awk tcp.awk
BEGIN {
if (dir == "")
dir = ".";
}
{
time = $2;
saddr = $4;
sport = $6;
daddr = $8;
dport = $10;
hiack = $14;
cwnd = $18;
ssthresh = $20;
srtt = $26;
rttvar = $28;
ownd = $34;
owndcorr = $36;
nr