8 my $cipherStrB=`cat cipherStringB.txt`;
11 my @files=`find . -name "*.tex.template" -print`;
14 foreach $f ( @files) {
16 $f =~ /(.*\.tex)\.template/;
19 print "file = $f\n" if $debug;
20 print "ftex = $ftex\n" if $debug;
22 open(FH, "<", $f ) or die "could not open file $f: $!";
23 open(FHOUT, ">", $ftex ) or die "could not open file $ftex: $!";
26 $_ =~ s/\@\@\@CIPHERSTRINGB\@\@\@/$cipherStrB/g;