Merge two files in windows using perl script

Hi

I want to merge two or more files using perl in windows only(Just like Paste command in Unix script) . How can i do this.Is ther any single command to do this?

Thanks
Kunal

check into the File::Spec module if you want a command/interface you can use. The module will probably have to be installed. Or you can manually open a file and print the other files sequentially to the new file.