index
:
egawk
master
Enhanced GNU Awk
kaz@kylheku.com
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
test
/
profile9.awk
blob: 16252ceae59a760bb565955a56f00a21b3d645d7 (
plain
)
1
2
3
4
5
6
7
8
9
# Some
# header
# comments
# Add up
{
sum
+=
$1
}
# Print sum
END
{
print
sum
}