Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    BBB
    CCC
    DDD
    
  2. or download this
    
    AAA
    ...
    DEBUG: loading_tsc received ''
     No such file or directory
    
  3. or download this
        @corners = <DATA> ;
    
  4. or download this
        foreach my $corner(@corners){...
    
  5. or download this
        foreach my $corner(@corners){
                   chomp $corner;          # we still need to chomp it..
    ...
    
        }
    
  6. or download this
    use Cwd;
        my $start_dir = getcwd;
    ...
        print `pwd`;
        print "\n";
    }
    
  7. or download this
    use File::Spec;
    
    ...
    
    my $path_to_go = File::Spec->catdir( $current_dir , $current_corner );
    chdir $path_to_go or die "unable to chdir in $path_to_go\n";