代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/278512/4143288
awk clock.awk
# awk program to scan clockstat files and report errors/statistics
#
# usage: awk -f check.awk clockstats
#
# This program works for the following radios:
# PST/Traconex 1020 WWV reciever
# Arbiter 10
www.eeworm.com/read/278512/4143292
awk etf.awk
# program to produce external time/frequence statistics from clockstats files
#
# usage: awk -f etf.awk clockstats
#
# format of input record
# 49165 40.473 127.127.10.1 93:178:00:00:39.238 ETF
# +175
www.eeworm.com/read/278512/4143293
awk itf.awk
# program to produce intewrnal time/frequence statistics from clockstats files
#
# usage: awk -f itf.awk clockstats
#
# format of input record
# 49227 67.846 127.127.10.1 93:240:00:00:51.816 ITF
# COC
www.eeworm.com/read/278512/4143295
awk tdata.awk
# program to produce loran tdata statistics from clockstats files
#
# usage: awk -f tdata.awk clockstats
#
# format of input record (missing replaced by -40.0)
# 49228 36.852 127.127.10.1 93:241:00:00
www.eeworm.com/read/278512/4143297
awk dupe.awk
#
# delete duplicate lines
#
{
if (old != $0)
printf "%s\n", $0
old = $0
}
www.eeworm.com/read/278512/4143300
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/278512/4143301
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/278512/4143302
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/277700/4152048
awk srcscan.awk
# srcscan.awk
#
# $Id:
#
# 21-Nov-1997 MJQ Created
#
# Scans any file looking for comments, blank lines and source
BEGIN {
FALSE = 0
TRUE = -1
comment = 0
asm_comment = 0
prev_com
www.eeworm.com/read/276120/4168378
scr awk.scr
/.*\(0x3da.*/||/.*\(0x3ba.*/ {
if (v_3da != 1) print "_v_retrace_";
v_3da = 1;
next;
}
/.*\(0x42.*/||/.*\(0x43.*/ {
if (v_4x != 1) print "_timer_";