Help for this page

Select Code to Download


  1. or download this
    next if -f $subdir;
    
  2. or download this
    next unless -d $subdir;
    
  3. or download this
    foreach my $subdir ( sort @subdirs ) {
    
    chdir($dir);
    next unless -d $subdir;
    ...
    
  4. or download this
    use strict;
    use warnings;
    ...
        chdir $dir . '/' . $subdir;
        system("echo '1 0' | program -f methane.trr -o $result_path/$subdi
    +r/outfile.txt");
    }