in reply to Re^3: Interpolate Perl variables in PODin thread Interpolate Perl variables in POD
I'd use Perl. Some variation on:
use strict; use warnings; while (<>) { s/this/that/g; print; } [download]