in reply to Re: Re: X10 and Windows
in thread X10 and Windows
my @test = system($command) ; print @test ;
#!/usr/bin/perl -w use strict ; my @test = system("dir") ; print @test ;
While:Volume in drive E is E_Drive Volume Serial Number is XXXX-XXXX Directory of E:\TempCode\test 08/06/2002 11:05a <DIR> . 08/06/2002 11:05a <DIR> .. 08/06/2002 11:05a 1,336 systemCommand.pl 1 File(s) 1,336 bytes 2 Dir(s) 1,629,966,336 bytes free 0
#!/usr/bin/perl -w use strict ; my @test = system("dirt") ; print @test ;
This should be usefull in at least telling you if the command is being executed and what the results are.'dirt' is not recognized as an internal or external command, operable program or batch file. 256
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: X10 and Windows
by Anonymous Monk on Aug 07, 2002 at 02:11 UTC | |
by tstock (Curate) on Feb 01, 2005 at 04:03 UTC |