代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
www.eeworm.com/read/455033/7378600
awk naca.awk
END {
Pi=3.14159265358979;
i20=20;
i8=8;
r = 5;
c0x = 1;
c0y=0;
print "Dimension",2;
print "MaximalAngleOfCorner 46";
print "Vertices",i20+i20+i8;
# the vertex on naca012 wing ( clock wise)
for (
www.eeworm.com/read/453925/7403706
awk include.awk
# Assume `source' is set with -vsource=filename on the command line.
#
/^\[\[\[/ { inclusion = $2; # name of the thing to include.
printing = 0;
while ((getline li
www.eeworm.com/read/450258/7486760
awk colorpts.awk
# Script for transforming points (x y z) into "rectangular surface".
# Can be used to draw colour points in gnuplot with the pm3d enhancement
# Petr Mikulik, 14. 10. 1999
BEGIN {
if (ARGC
www.eeworm.com/read/449513/7501880
awk throughput.awk
# ======================================================================
#
# Simulation Goal : Link Throughput
# Simulation Topology : Chain
# Trace type : Normal trace
#
www.eeworm.com/read/449122/7518093
c awk.c
/*
* $Id: awk.c,v 1.2 2002/02/17 06:04:32 darren Exp $
*
* Copyright (c) 2000-2002, Darren Hiebert
*
* This source code is released for free distribution under the terms of the
* GNU Gen
www.eeworm.com/read/439471/7708129
txt awk手册.txt
什么是<mark>awk</mark>?
你可能对UNIX比较熟悉,但你可能对<mark>awk</mark>很陌生,这一点也不奇怪,的确,与其优秀的功能相比,<mark>awk</mark>还远没达到它应有的知名度。<mark>awk</mark>是什么?与其它大多数UNIX命令不同的是,从名字上看,我们不可能知道<mark>awk</mark>的功能:它既不是具有独立意义的英文单词,也不是几个相关单词的缩写。事实上,<mark>awk</mark>是三个人名的缩写,他们是:Aho、(Peter)Weinberg和 ...
www.eeworm.com/read/439387/7711379
awk tx.awk
# -------------------------------------------------------------------
# Vehicular Ad Hoc Networks: Regular Broadcasting of messages.
# Skeleton for VANET-protocols. This should be considered as an
# e
www.eeworm.com/read/438309/7732953
awk avr.awk
BEGIN { FS = " "} { nl++ } { s=s+$1} END {print "average:" s/nl}
www.eeworm.com/read/438309/7732954
awk stdv.awk
BEGIN {FS=" "}{ln++}{d=$1-t}{s2=s2+d*d} END {print "standev:" sqrt(s2/ln)}