代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/131315/5935463
awk include.awk
# input file should have lines which start with "@incl" followed by
# a name of a file to include
{
if ((NF == 2) && ($1 == "@incl")) {
print " -- included file -- ", $2
while ((getline line <
www.eeworm.com/read/131315/5935471
h awk.h
/*
* awk.h -- Definitions for gawk.
*/
/*
* Copyright (C) 1986, 1988, 1989, 1991, 1992 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK P
www.eeworm.com/read/131315/5936518
awk cond.awk
# Simpleminded conditional-processor awk script
# to permit use of a single .y source file for C and Objective C.
# If objc=1, the ifobjc conditionals succeed.
# If objc=0, the ifc conditionals succee
www.eeworm.com/read/131315/5936850
awk debflex.awk
# Clarify the flex debug trace by substituting first line of each rule.
# Francois Pinard , July 1990.
#
# Sample usage:
# flex -d PROGRAM.l
# gcc -o PROGRAM PROGRAM.c -lfl
#
www.eeworm.com/read/131315/5937337
awk nicnet.awk
BEGIN { FS = ":" }
/^NET/ {
ip = $2;
while (substr(ip,1,1) == " ") ip = substr(ip,2,length(ip)-1);
while (substr(ip,length(ip),1) == " ") ip = substr(ip,1,length(ip)-1);
name = $3;
while (su
www.eeworm.com/read/131315/5938017
awk options.awk
# @(#)options.awk 8.1 (Berkeley) 4/17/94
/^\/\* O_[0-9A-Z_]*/ {
printf("#define %s %d\n", $2, cnt++);
next;
}
END {
printf("#define O_OPTIONCOUNT %d\n", cnt);
}
www.eeworm.com/read/131315/5938074
awk excmd.awk
# @(#)excmd.awk 8.1 (Berkeley) 4/17/94
/^\/\* C_[0-9A-Z_]* \*\/$/ {
printf("#define %s %d\n", $2, cnt++);
next;
}
www.eeworm.com/read/131315/5938793
awk mmtrace.awk
#
# Awk program to analyze mtrace.c output.
#
$1 == "+" { if (allocated[$2] != "")
print "+", $2, "Alloc", NR, "duplicate:", allocated[$2];
else
allocated[$2] = $3;
}
$1 == "-" { if
www.eeworm.com/read/131315/5939241
awk copying.awk
BEGIN {
FS="\"";
print "/* ==> Do not modify this file!! It is created automatically";
print " by copying.awk. Modify copying.awk instead.