Help for this page

Select Code to Download


  1. or download this
    if ($success){
       print "Changed [$oldname] to [$newname]\n"
    ...
       print "Failed to rename [$oldname] to [$newname] $!\n";
       exit
    };
    
  2. or download this
    sub hex_dump {
       unpack "H*", $_[0];
    }
    print "\$oldname = [", hex_dump($oldname), "]\t";
    print "\$newname = [", hex_dump($newname), "]\n";
    
  3. or download this
    $newname =~ tr/a-zA-Z0-9\.//cd;