代码搜索:awk

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

代码结果 3,459
www.eeworm.com/read/481424/6640611

awk sigconv.awk

BEGIN { nsig = 0; j = 0; print "/* This file was automatically generated */" print "/* by the awk script \"sigconv.awk\". */\n" print "struct sigdesc {" print
www.eeworm.com/read/476738/6749316

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/476738/6749323

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/264377/11317847

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/264377/11317861

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/264342/11319330

awk rfcd.awk

BEGIN { RFCPATH = "/usr/local/rfc" ; body = 0 ; count = 0 } /From:/ { retaddr = substr($0, 6); next } /Subject:/ { rfcnum = substr($0, 9); next } END { cmd = RFCPATH " " rfcnum; cmd = cmd "
www.eeworm.com/read/264291/11322695

awk extractthroughput.awk

BEGIN { printf"speed \t nHops \t throughput\n"; speed =0; } /Speed/ { speed = $3;} /throughput/ { printf"%d \t %d \t %.0f \n",speed, $4, $5;}
www.eeworm.com/read/264291/11322703

awk genplotth.awk

/*compute the throughput mean of each point*/ NR == 2 { speed = $1; hops = $2; th = $3; samples = 1; } NR > 2 { if( (speed != $1) || (hops != $2) ) {
www.eeworm.com/read/264291/11322709

awk extractdalrate.awk

BEGIN { speed =0; sent =0; } /Speed/ { speed = $3; } /Sent data/ { sent = $4; } /Delivered/ { printf"%d \t %d \t %d \n",speed, sent, $4;}
www.eeworm.com/read/264291/11322718

awk genplotlat.awk

/*compute the latency mean of each point*/ NR == 2 { speed = $1; hops = $2; lat = $3; samples = 1; } NR > 2 { if( (speed != $1) || (hops != $2) ) { /