代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/457053/1601539
awk ftp.awk
{
print $2, $4, $1, $5, $6
#print $3, $5, $1, $6, $7
}
www.eeworm.com/read/457053/1601542
awk pkt.awk
{
if ($4 != 0) {
if (($1 == src) && ($2 == dst) && ($4 == size)) {
t=$3-time
if ((t < 0.001) && ($4 > 500)) {
if (($1 != preS) || ($2 != preD)) {
# print $1, $2, $4
print $4
preS=
www.eeworm.com/read/457053/1601553
awk delay.awk
#
# Copyright (C) 2001 by USC/ISI
# All rights reserved.
#
# Redistribution and use in source and binary forms are permitted
# provided that the above copyright notice and this paragraph are
# duplica
www.eeworm.com/read/457053/1601571
awk win.awk
{
if ($7 == "win") {
print $8
} else {
if ($9 == "win") {
print $10
}
}
}
www.eeworm.com/read/456296/1606507
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/456296/1606533
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/456296/1606540
awk packetdat.awk
BEGIN {
# we need to know (usual) packet size to convert byte numbers
# to packet numbers
if (packetsize
www.eeworm.com/read/455269/1624493
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;