in reply to How to concatenate the contents of two files?

If this is all you want to do with those files, you could just hand this off as a system command, like so:
`more B.txt >> A.txt`
See perlop if you're not familiar with "backtick" notation.

Replies are listed 'Best First'.
Re^2: How to concatenate the contents of two files?
by Aristotle (Chancellor) on Sep 02, 2004 at 21:01 UTC

    Ugh, please don't use backticks simply to invoke a shell command.

    system 'cat B.txt >> A.txt';

    Makeshifts last the longest.