代码搜索:awk

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

代码结果 3,459
www.eeworm.com/read/131315/5935403

awk exp.awk

BEGIN { print exp(0), exp(1000000), exp(0.5) }
www.eeworm.com/read/131315/5935404

awk func.awk

BEGIN { print dummy(1) }
www.eeworm.com/read/131315/5935407

awk numfunc.awk

BEGIN { y = 8 x = 1 while (x < 256) { print "arctan", y/x, atan2(y , x) x += x } print "" pi8 = atan2(1, 1) / 2 arg = 0 for (i = 0; i
www.eeworm.com/read/131315/5935408

awk nfset.awk

{ NF = 5 ; print }
www.eeworm.com/read/131315/5935409

awk swaplns.awk

{ if ((getline tmp) > 0) { print tmp print } else print }
www.eeworm.com/read/131315/5935412

awk rand.awk

BEGIN { srand() for (i = 0; i < 19; i++) printf "%3d ", (1 + int(100 * rand())) print "" }
www.eeworm.com/read/131315/5935414

awk asgext.awk

{ print $3; $4 = "a"; print }
www.eeworm.com/read/131315/5935415

awk anchgsub.awk

{ gsub(/^[ ]*/, "", $0) ; print }
www.eeworm.com/read/131315/5935420

awk reparse.awk

{ gsub(/x/, " ") $0 = $0 print $1 print $0 print $1, $2, $3 }
www.eeworm.com/read/131315/5935422

awk longwrds.awk

# From Gawk Manual modified by bug fix and removal of punctuation # Record every word which is used at least once { for (i = 1; i