in reply to
running unix commands under perl
backticks come to mind (
qx//
)...
my $foo = qx/ls -l/;
[download]
That's ofcourse for ANY type of OS :) You might want to call a command with the full path
Greetz
Beatnik
...Perl is like sex: if you're doing it wrong, there's no fun to it.
Comment on
Re: running unix commands under perl
Download
Code
In Section
Seekers of Perl Wisdom