Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my @sourceD = "i:/tmp";
    my @targetD = "c:/temp";
    move @{$_} foreach map { [ "$sourceD/$_", "$targetD/$_" ] } map {basen
    +ame $_} <$sourceD/*.pl>;