diff options
Diffstat (limited to 'convert.awk')
| -rw-r--r-- | convert.awk | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/convert.awk b/convert.awk index e2248b2..4eccdbf 100644 --- a/convert.awk +++ b/convert.awk @@ -2,11 +2,14 @@ BEGIN { line=0; } -NR > 47 { - line++; - print +NR < 61 { next } + +# Page numbers +/^ *[0-9][0-9]* *$/ { next } -# if (line < 40) { -# break -# } +# Page headers +/^ *Constance Ring *$/ { next } + +{ + print } |
