- or download this
use strict;
use warnings;
...
BBB
CCC
DDD
- or download this
AAA
...
DEBUG: loading_tsc received ''
No such file or directory
- or download this
@corners = <DATA> ;
- or download this
foreach my $corner(@corners){...
- or download this
foreach my $corner(@corners){
chomp $corner; # we still need to chomp it..
...
}
- or download this
use Cwd;
my $start_dir = getcwd;
...
print `pwd`;
print "\n";
}
- 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";