summaryrefslogtreecommitdiff
path: root/test/profile8.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 }