http://www.perlmonks.org?node_id=18461


in reply to Downloading multiple files

I think that Corion has the right idea with tar'ing the files together. A simple way to do it without modules or temporary files is to use backticks:
print(`tar cf - $file1 $file2 $file3`);
More info on doing this can be found at a question I asked earlier: Auto-Backup Questions

- Zoogie