#!/usr/bin/awk -f # # hepu2fet_fixfoot # # usage: hepu2fet_fixfoot year=2008 < hepu/index.html > fet/index.html # # http://www.heikopurnhagen.net/software/hepu2fet_fixfoot # # This program is available under the terms of the GNU General Public # License (GPL). All usual disclaimers apply! # # Heiko Purnhagen (mail@heikopurnhagen.net) # HP 20080817 { if ($0 == "


") { # remove makehtmlgallery footer (4 lines) getline; getline; getline; print "

All photos copyright Heiko Purnhagen " year "

" } else { print $0; } } #--