#! /bin/sh
mcgrep -n -e ---------------- dq8.txt | tr : \  | awk 'BEGIN { prev = 0; } { printf("%d %d\n",$1,$1-prev); prev = $1; }'
