Skip to content

Commit

Permalink
Add util/show-gaps.awk
Browse files Browse the repository at this point in the history
  • Loading branch information
sbeyer committed Jan 31, 2016
1 parent 1553387 commit 14ab2cb
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions util/show-gaps.awk
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/gawk -f
BEGIN {
FS=","
OFS=" "
}

/\.stp/ {
if ($7 != $8) {
print $1 "/" $2, $8/$7
}
}

0 comments on commit 14ab2cb

Please sign in to comment.