in reply to Find and Replace
if (...) { # you declare a variable here my $copy; ... # use it here } # and use it here - WRONG [download]
You can't use the variable outside the block you declare it in. So move the declaration outside of the block.