代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/184388/5249644
awk dupe.awk
#
# delete duplicate lines
#
{
if (old != $0)
printf "%s\n", $0
old = $0
}
www.eeworm.com/read/184388/5249647
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/184388/5249648
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/184388/5249649
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/182943/5261808
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/182103/5273145
svc awk.svc
#########################################################################
#
# Component: RDBG
# Module: awk.svc
#
# Synopsis: AWK script which transforms the server skeleton produced
# by rpcgen(1
www.eeworm.com/read/179911/5300648
awk compile.awk
# to run: awk -f transit.awk transit.p0
#
BEGIN { "date" | getline
enable_index = 1
today = $0
printf("\n/* this file was generated on %s */\n", today )
not_firstone = 0 # flag to avoid empty ent
www.eeworm.com/read/179911/5300656
awk actionnm.awk
# usage: awk -f actionnm.awk pseudocode.h
#
BEGIN { "date" | getline
today = $0
printf("\n/* this file generated on %s */\n", today )
printf("\nstatic char *action_names[] = { \n " )
opl = 0
}
www.eeworm.com/read/179911/5300659
awk compile.awk
# usage: cat pseudocode | sed -f act2num | awk -f compile.awk
#
#
BEGIN { "date" | getline
today = $0
printf("\n/* this file generated on %s */\n", today )
printf("\nstatic char pseudo_code [ ] =
www.eeworm.com/read/176655/5336161
awk config.awk
#
# $Id: config.awk,v 1.6 1998/09/15 16:48:44 wfs Exp $
#
# Gated Release 3.5
# Copyright (c) 1990,1991,1992,1993,1994,1995 by Cornell University. All
# rights reserved. Refer to Particulars and oth