on 1/3/02 4:55 PM, Chris Nandor at [EMAIL PROTECTED] wrote: > At 14:42 -0800 2002.01.03, Tom Sackett wrote: >> How can a launch an application from a Perl script in Mac OS X? > > You might want to ask the [EMAIL PROTECTED] mailing list (see > http://lists.perl.org/).
Alternatively, use the 'open' command to run a Mac OS X application: system('/usr/bin/open', $pathToApplication); where $pathToApplication = "/Applications/iTunes.app";