Help for this page

Select Code to Download


  1. or download this
    my @list = glob("*.fasta");
    foreach my $fname (@list) {
      my ($base) = split /\./, $fname;
      system "perl mycode.pl $base >~/MyPerl/result_ans/$base.out"
    }
    
  2. or download this
    use Proc::Queue size=>5, qw(system_back);
    
    ...
      system_back "perl mycode.pl $base >~/MyPerl/result_ans/$base.out"
    }
    1 while wait != -1;