The Lurker's Guide to Babylon 5
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
167 B

17 years ago
  1. #!/bin/sh
  2. for i in [012]*.html; do
  3. (
  4. echo '<h2><a name="OV">Overview</a></h2>'
  5. sed -e '1,/<h2>/d' -e '/nowrap>$/,$d' < $i
  6. ) > `basename $i .html`
  7. echo $i
  8. done