代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/233448/4690436
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/231546/4715037
awk mve.awk
#!/usr/bin/nawk -f
#
# Change "nawk" to "awk" or "gawk" if you get errors.
#
# Make Vim Errors
# Processes errors from cc for use by Vim's quick fix tools
# specifically it translates the ---------^ n
www.eeworm.com/read/231546/4715319
vim awk.vim
" Vim syntax file
" Language: awk, nawk, gawk, mawk
" Maintainer: Antonio Colombo
" Last Change: 2001 Apr 30
" AWK ref. is: Alfred V. Aho, Brian W. Kernighan, Peter J. Wei
www.eeworm.com/read/230229/4724409
awk countall.awk
BEGIN { lines= files= 0 }
{ lines += $1 ; files++ }
END { print name ": " lines " lines in " files " files" }
www.eeworm.com/read/229812/4740847
awk msgref.awk
{
print "/" $1 "/i\\"
print $1
}
END {
print "1,$d"
}
www.eeworm.com/read/229812/4741286
h awk.h
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Res
www.eeworm.com/read/229812/4746275
awk xlat.awk
#
# display the sections between XLATOFF and XLATON comments
#
/\/\* XLATOFF \*\// {
for(;;) {
print $0
getline;
if( match( $0, /\/\* XLATON \*\// ) ) break;
}
print $0
}
www.eeworm.com/read/229812/4746277
awk stripcmt.awk
{ gsub( /\\r/, "" ) }
/^c$pragma.*\\/ {
print $0
do {
getline;
gsub( /\\r/, "" );
print $0
} while( /\\$/ );
processed = 1;
}
!processed && /^c[^\$]/ {
processe
www.eeworm.com/read/229812/4746278
awk pmddim.awk
#
# this awk script is used to help convert pmddim.h... run it on the output
# of the h to fi conversion
#
{
print $0;
}
/c##[ \t]+#define[ \t]+[A-Za-z0-9_]+\(.*\)/ {
name = $3;
www.eeworm.com/read/229812/4746284
awk special.awk
function init_special_types() {
# these are hand converted types from basedef.h
conv_to_int[ "WORD" ] = 2;
conv_to_int[ "DWORD" ] = 4;
conv_to_int[ "INT" ] = 4;
conv_to_int[ "