diff options
| author | Trygve Laugstøl <trygvis@inamo.no> | 2025-07-01 23:03:48 +0200 |
|---|---|---|
| committer | Trygve Laugstøl <trygvis@inamo.no> | 2025-07-01 23:03:48 +0200 |
| commit | 0ea34fda01d27e3b173fd13d880e3c794c09e117 (patch) | |
| tree | 2fec26a805c00b831440665424ab9b5caee5c3ef /convert.awk | |
| parent | 348a41d890abd7e82103e7cc2baea508fb35de67 (diff) | |
| download | constance-ring-0ea34fda01d27e3b173fd13d880e3c794c09e117.tar.gz constance-ring-0ea34fda01d27e3b173fd13d880e3c794c09e117.tar.bz2 constance-ring-0ea34fda01d27e3b173fd13d880e3c794c09e117.tar.xz constance-ring-0ea34fda01d27e3b173fd13d880e3c794c09e117.zip | |
wip
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 } |
