10 lines
92 B
Perl
10 lines
92 B
Perl
|
while(<>)
|
||
|
{
|
||
|
while ( /DISTMAP/ )
|
||
|
{
|
||
|
s/DISTMAP/MPCPDD/;
|
||
|
}
|
||
|
print $_;
|
||
|
}
|
||
|
|