代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/471161/1433295
awk dupe.awk
#
# delete duplicate lines
#
{
if (old != $0)
printf "%s\n", $0
old = $0
}
www.eeworm.com/read/471161/1433298
awk loop.awk
# awk program to scan loopstats files and report errors/statistics
#
# usage: awk -f loop.awk loopstats
#
# format of loopstats record
# MJD sec time (s) freq (ppm) poll
# 49235 3.943 0.0000
www.eeworm.com/read/471161/1433299
awk peer.awk
# awk program to scan peerstats files and report errors/statistics
#
# usage: awk -f peer.awk peerstats
#
# format of peerstats record
# MJD sec ident stat offset (s) delay (s) disp (s)
#
www.eeworm.com/read/471161/1433300
awk psummary.awk
# program to scan peer_summary file and produce summary of daily summaries
#
# usage: awk -f psummary.awk peer_summary
#
# format of input records
# peerstats.19960706
# ident cnt mean
www.eeworm.com/read/470917/1442897
awk errnos.awk
# Copyright (C) 1991,92,93,94,95,96,97,2000,01,02
# Free Software Foundation, Inc.
# This file is part of the GNU C Library.
# The GNU C Library is free software; you can redistribute it and/or
# mod
www.eeworm.com/read/470693/1467325
awk makedoc.awk
# Take apart bits of HTML and puts them back together again in new and
# fascinating ways. Copyright (C) 2002 Free Software Foundation, Inc.
# Contributed by Phil Edwards . Simple t
www.eeworm.com/read/467515/1500858
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/457053/1600622
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/457053/1600629
awk pkts.awk
#
# pkts.awk
# awk script to parse the output of a ns trace file,
# and produce seqno vs time XY data file
#
# Usage:
# awk -f pkts.awk OP= [args] tracefile
#
# [args] can be:
# FID=
www.eeworm.com/read/457053/1600638
awk bw.awk
#
# bw.awk
# awk script to parse the output of a ns trace file,
# and produce mean bandwidth vs time-interval
#
# Usage:
# awk -f bw.awk OP= [args] tracefile
#
# [a