in reply to Re^2: How to use perl to open programsin thread open programs with a particular file!
You'd need it for non-executables, to call up the associated application:
system('start /wait "word.doc"'); # Word system('start /wait "program.txt"'); # Notepad or ... system('start /wait http://www.perlmonks.org/'); # Favorite browser [download]