代码搜索:Awk

找到约 3,459 项符合「Awk」的源代码

代码结果 3,459
www.eeworm.com/read/377683/9265727

awk mkopcodec.awk

#!/usr/bin/awk -f # # This AWK script scans the opcodes.h file (which is itself generated by # another awk script) and uses the information gleaned to create the # opcodes.c source file. # # Opcodes.c
www.eeworm.com/read/374506/9401572

awk uustring.awk

#! /usr/bin/awk # # $Id: uustring.awk,v 1.2 1996/07/03 19:30:08 fp Exp $ # # Extract definitions for string codes from uustring.c into uustring.h # Does this script require GAWK? # BEGIN { i=1; } /\$
www.eeworm.com/read/177819/9431298

awk formatbre.awk

# # Basic Regular Expression # kip comments $0 ~ /^#/ { next; } # skip those option specific to regexec/regcomp $2 ~ /[msnr$#p^]/ { next; } # skip empty lines $0 ~ /^$/ { next; } # debug #{ printf
www.eeworm.com/read/177819/9431304

awk bre.awk

BEGIN { FS="@"; n = 0; printf ("# Generated Spencer BRE Test\n"); printf ("failures=0\n"); } $0 ~ /^#/ { next; } NF == 3 { # printf ("status=`echo '%s' | { ${GREP} -e '%s' > /dev/null 2>&1; ech
www.eeworm.com/read/177819/9431306

awk formatere.awk

# # Extended Regular Expression # skip comments $0 ~ /^#/ { next; } # skip specifics to regcomp/regexec $2 ~ /[msnr$#p^]/ { next; } # jump empty lines $0 ~ /^$/ { next; } # subreg skip NF >= 5 { n
www.eeworm.com/read/177819/9431315

awk ere.awk

BEGIN { FS="@"; n = 0; printf ("# Generated Spencer ERE Test\n"); printf ("failures=0\n"); } $0 ~ /^#/ { next; } NF == 3 { # printf ("status=`echo '%s' | { ${GREP} -E -e '%s' > /dev/null 2>&1;
www.eeworm.com/read/373012/9479233

awk deriv.awk

# the file should contain nbtimestep lines, and n results per line # we compute (nbtimestep-1) time derivatives BEGIN { dt=1; n=0; time=0; } { if(!time) n = $NF; for(j=0; j
www.eeworm.com/read/373012/9479239

awk moyx.awk

# When cut on a plane, this little program allows to calculate the mean in one # direction of the cut. If a cut of (4,3), moyx.awk gives 5 values with the # mean of the four associated values. BEGI
www.eeworm.com/read/175933/9524487

awk mkopcodeh.awk

#!/usr/bin/awk -f # # Generate the file opcodes.h. # # This AWK script scans a concatenation of the parse.h output file from the # parser and the vdbe.c source file in order to generate the opcodes nu
www.eeworm.com/read/175933/9524492

awk addopcodes.awk

#!/usr/bin/awk # # This script appends additional token codes to the end of the # parse.h file that lemon generates. These extra token codes are # not used by the parser. But they are used by the to