代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/428543/1959198
awk purge.awk
BEGIN { FS="|" }
{
printf("delete from user_log where user_nm='%s' and log_sq
www.eeworm.com/read/427974/1964277
awk prep.awk
{
gsub(//, "");
gsub(//, "");
gsub(//, "");
if (length($0) > 0) {
print;
}
}
www.eeworm.com/read/427974/1964279
awk gentranscript.awk
{
gsub(//, "");
gsub(//, "");
sentence[$0] = $0;
}
END {
for (i in sentence) {
print i;
}
}
www.eeworm.com/read/427974/1964280
awk extractvocab.awk
$1 == "WORD" { vocab[$2] = $2; }
NF == 1 { vocab[$1] = $1; }
NF > 1 && $1 == "" {
ok = 1;
for (i = 1; i
www.eeworm.com/read/426481/1990120
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/422060/2045556
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/422060/2045567
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/422060/2045573
awk opcodedoc.awk
#
# Extract opcode documentation for sqliteVdbe.c and generate HTML
#
BEGIN {
print ""
print "SQLite Virtual Database Engine Opcodes"
print ""
}
/ Opcod
www.eeworm.com/read/422060/2045577
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