代码搜索:awk
找到约 3,459 项符合「awk」的源代码
代码结果 3,459
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/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/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