- or download this
my @test = system($command) ;
print @test ;
- or download this
#!/usr/bin/perl -w
use strict ;
my @test = system("dir") ;
print @test ;
- or download this
Volume in drive E is E_Drive
Volume Serial Number is XXXX-XXXX
...
1 File(s) 1,336 bytes
2 Dir(s) 1,629,966,336 bytes free
0
- or download this
#!/usr/bin/perl -w
use strict ;
my @test = system("dirt") ;
print @test ;
- or download this
'dirt' is not recognized as an internal or external command,
operable program or batch file.
256