代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/398902/2367148
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/398634/2372390
awk fileid.awk
# $Id: fileid.awk,v 10.4 2000/07/17 22:07:17 ubell Exp $
#
# Take a comma-separated list of file numbers and spit out all the
# log records that affect those file numbers.
NR == 1 {
nfiles = 0
whil
www.eeworm.com/read/398634/2372392
awk commit.awk
# $Id: commit.awk,v 10.2 1999/11/21 18:01:42 bostic Exp $
#
# Output tid of committed transactions.
/txn_regop/ {
print $5
}
www.eeworm.com/read/398634/2372394
awk status.awk
# $Id: status.awk,v 10.3 2002/04/11 01:35:24 margo Exp $
#
# Read through db_printlog output and list all the transactions encountered
# and whether they commited or aborted.
#
# 1 = started
# 2 = com
www.eeworm.com/read/398634/2372396
awk txn.awk
# $Id: txn.awk,v 10.3 2000/07/17 22:07:17 ubell Exp $
#
# Print out all the records for a comma-separated list of transaction ids.
NR == 1 {
ntxns = 0
while ((ndx = index(TXN, ",")) != 0) {
txn[nt
www.eeworm.com/read/398634/2372397
awk rectype.awk
# $Id: rectype.awk,v 11.3 2000/07/17 22:00:49 ubell Exp $
#
# Print out a range of the log
# Command line should set RECTYPE to the a comma separated list
# of the rectypes (or partial strings of rect
www.eeworm.com/read/398634/2372398
awk logstat.awk
# $Id: logstat.awk,v 1.1 2002/05/10 15:19:13 bostic Exp $
#
# Output accumulated log record count/size statistics.
BEGIN {
l_file = 0;
l_offset = 0;
}
/^\[/{
gsub("[][: ]", " ", $1)
split($1, a)
www.eeworm.com/read/398634/2372399
awk dbname.awk
# $Id: dbname.awk,v 1.5 2002/05/07 05:45:51 ubell Exp $
#
# Take a comma-separated list of database names and spit out all the
# log records that affect those databases.
NR == 1 {
nfiles = 0
while
www.eeworm.com/read/398634/2372400
awk pgno.awk
# $Id: pgno.awk,v 10.3 2000/07/17 22:07:17 ubell Exp $
#
# Take a comma-separated list of page numbers and spit out all the
# log records that affect those page numbers.
NR == 1 {
npages = 0
while
www.eeworm.com/read/398634/2372401
awk range.awk
# $Id: range.awk,v 10.2 1999/11/21 18:01:42 bostic Exp $
#
# Print out a range of the log
/^\[/{
l = length($1) - 1;
i = index($1, "]");
file = substr($1, 2, i - 2);
file += 0;
start = i + 2;
o