in reply to system() on linux/win32

Hi,
doing

perldoc -f system
you'll find that it is normal that the script blocks until the end of the execution of the command. If you want your script go on after launching the excel command, then you must do your own fork.

Update: see this node about fork-ing on windows.

Cheers
Leo TheHobbit