Skip to main content



Which way would you like to refresh the advisory data for CPAN::Audit? · briandfoy cpan-audit · Discussion #61 submitted by /u/briandfoy
[link] [comments]


submitted by /u/Active-Fuel-49
[link] [comments]



http://Direct Access to PDF Internals with PDF::Data - Deven Corzine - TPRC 2024 submitted by /u/briandfoy
[link] [comments]


I try to use Perl's rename utility to translate filenames to lower case. I tried two different solutions, one from perldoc rename and another from Perl Cookbook:

  • rename 'y/A-Z/a-z/' ./*
  • rename 'tr/A-Z/a-z/ unless /^Make/' *.txt

But either version gives me an error because of complaining that file with such a filename already exists:

./fOoBaR.tXt not renamed: ./foobar.txt already exists

How to make it work?

submitted by /u/Impressive-West-5839
[link] [comments]