<syntaxhighlight lang="awk" name="avg">

  1. !/usr/bin/awk -f
  2. Calculate average, syntax: ./avg.awk field-number file

BEGIN {field = ARGV[1]; ARGV[1] = "" } { sum += $field } END { print sum / NR} </syntaxhighlight>




blog comments powered by Disqus



This work is licensed under the CC By-SA 3.0 , without all the cruft that would otherwise be put at the bottom of the page.

Sister Sites: GATE CSE Wiki, GATE CSE, Aptitude Overflow