Skip to content

Instantly share code, notes, and snippets.

@rightfold
Last active August 29, 2015 14:19
Show Gist options
  • Save rightfold/49c26dc60b5e90b264d1 to your computer and use it in GitHub Desktop.
Save rightfold/49c26dc60b5e90b264d1 to your computer and use it in GitHub Desktop.
function sum(a, b) {
return a + b
}
BEGIN {
aggregate(sum) total = 0
}
# records are processed in parallel
# <- sends data to an aggregate
$1 == ADD { total <- $2 }
$1 == SUB { total <- -$2 }
END {
print total
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment