in reply to calling Unix commands
And if you have a development version of Perl laying around ( 5.7.0 :) you can check out the OO interface to Shell ( you're welcome :)use Shell; print ls();
Bad namespace polution, bad!use Shell; my $sh = shell->new; print $sh->ls;
-- Casey I am a superhero.
|
---|