Help for this page

Select Code to Download


  1. or download this
    my $result = `perl D:\\Perl\\bin\\linklint-2.3.5 http://www.perlmonks.
    +org `;
    print "result: $result\n";
    
  2. or download this
    my $test = `perl -v `;
    print "this is test: $test\n";
    
  3. or download this
    my @result = ();
    open (TEST, "perl D:\\Perl\\bin\\linklint-2.3.5 http://www.perlmonks.o
    +rg  |");
    ...
    close TEST;
    
    print "This is result: @result\n";