代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/136786/5867006
awk actionnm.awk
# usage: awk -f actionnm.awk pseudocode.h
#
BEGIN { "date" | getline
today = $0
printf("\n/* this file generated on %s */\n", today )
printf("\nstatic char *action_names[] = { \n " )
opl = 0
}
www.eeworm.com/read/136786/5867009
awk compile.awk
# usage: cat pseudocode | sed -f act2num | awk -f compile.awk
#
#
BEGIN { "date" | getline
today = $0
printf("\n/* this file generated on %s */\n", today )
printf("\nstatic char pseudo_code [ ] =
www.eeworm.com/read/131315/5932101
awk run.awk
$2 == "syscall" {
ncalls = $3; getline; time = substr($2, 0, 4);
print "System Call Overhead: ", (time * 1000000) / ncalls, "us"; }
www.eeworm.com/read/131315/5935013
awk mean.awk
#!/bin/awk -f
#
# Copyright (c) 1990, 1993
# The Regents of the University of California. All rights reserved.
#
# This code is derived from software contributed to Berkeley by
# Van Jacobson.
#
# Re
www.eeworm.com/read/131315/5935014
awk median.awk
#!/bin/awk -f
#
# Copyright (c) 1990, 1993
# The Regents of the University of California. All rights reserved.
#
# This code is derived from software contributed to Berkeley by
# Van Jacobson.
#
# Re
www.eeworm.com/read/131315/5935356
y awk.y
/*
* awk.y --- yacc/bison parser
*/
/*
* Copyright (C) 1986, 1988, 1989, 1991, 1992 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Proga
www.eeworm.com/read/131315/5935394
awk splitargv.awk
BEGIN {
for (idx = 1; idx < ARGC; idx++)
split(ARGV[idx], temp, ".");
}
{
print $0;
}