Help for this page

Select Code to Download


  1. or download this
    my @test = system($command) ;
    print @test ;
    
  2. or download this
    #!/usr/bin/perl -w
    use strict ;
    my @test = system("dir") ;
    print @test ;
    
  3. 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
    
  4. or download this
    #!/usr/bin/perl -w
    use strict ;
    my @test = system("dirt") ;
    print @test ;
    
  5. or download this
    'dirt' is not recognized as an internal or external command,
    operable program or batch file.
    256