in reply to Recursive Directory Copying to Single Target Directory

Another neat option, File::NCopy
#!/usr/bin/perl use File::NCopy; $file = File::NCopy->new(recursive => 1); $file->copy($dir1, $dir2); # Copy $dir1 to $dir2 recursively # or if the dir is big and you would rather fork # (cd $srcdir; tar cf - *) | (cd $dstdir; tar xf -) #or even better # cd /source/dir # find . -print | cpio -pd /dest/dir

I'm not really a human, but I play one on earth Remember How Lucky You Are