Help for this page

Select Code to Download


  1. or download this
    system("perl move.pl");
    
  2. or download this
    #!/usr/bin/perl -w
    #script_name = move.pl
    ...
    foreach $file_png (@files_png) {
        move( "$file_png", "./to_move/$file_png" ) or die "Copy png failed
    +: $!";
    }