代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/183326/9170311
awk mknames.awk
# $Id: MKnames.awk,v 1.11 2000/12/09 23:46:13 tom Exp $
BEGIN {
print "/* This file was generated by MKnames.awk */" > "namehdr"
print "" > "namehdr"
print "#include " >
www.eeworm.com/read/183326/9170374
awk mkcaptab.awk
#!/bin/sh
# $Id: MKcaptab.awk,v 1.12 2000/12/10 00:14:12 tom Exp $
AWK=${1-awk}
DATA=${2-../include/Caps}
cat
www.eeworm.com/read/183272/9172760
awk makeconf.awk
BEGIN {
printf("#include \"apue.h\"\n")
printf("#include \n")
printf("#include \n")
printf("\n")
printf("static void pr_sysconf(char *, int);\n")
printf("static void pr_pathco
www.eeworm.com/read/183272/9172771
awk makeopt.awk
BEGIN {
printf("#include \"apue.h\"\n")
printf("#include \n")
printf("\n")
printf("static void pr_sysconf(char *, int);\n")
printf("static void pr_pathconf(char *, char *, int);\n")
pri
www.eeworm.com/read/182116/9216912
awk makeman.awk
#!/usr/bin/gawk -f
#
# makeman - make zgv man page from texinfo file.
# Public domain by Russell Marks.
#
# Requires gawk (it uses `gensub' (gawk only?) and `[:blank:]' (POSIX)).
#
# Note that this *I
www.eeworm.com/read/182116/9217039
awk mkopts.awk
# mkopts.awk - make getopt_long(), config file tables, and short-option
# string from options.src. (Based on xzgv's.)
#
# See options.src for details of the format that file uses.
# writing to /dev
www.eeworm.com/read/377683/9265384
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/377683/9265394
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
www.eeworm.com/read/377683/9265436
awk memleak.awk
#
# This script looks for memory leaks by analyzing the output of "sqlite"
# when compiled with the SQLITE_DEBUG=2 option.
#
/[0-9]+ malloc / {
mem[$6] = $0
}
/[0-9]+ realloc / {
mem[$8] = "";
www.eeworm.com/read/377683/9265478
awk opcodedoc.awk
#
# Extract opcode documentation for sqliteVdbe.c and generate HTML
#
BEGIN {
print ""
print "SQLite Virtual Database Engine Opcodes"
print ""
}
/ Opcod