in reply to Extracting Files from Multiple Directories

As others have said, this can be done in Perl. But ... how many files do you have? If they will fit into the arguments list of a program then you can do this easily in the Unix shell:

$ mv dir*/*.output result

If that works for you, then it may be easier than coding it in Perl. (And if you need it in a script then you can always use system).

Smylers