File::Rename
Perl extension for renaming multiple files
- Provided by: rename (Version: 0.20-4)
- Report a bug
Perl extension for renaming multiple files
use File::Rename qw(rename); # hide CORE::rename
rename @ARGV, sub { s/\.pl\z/.pm/ }, 1;
use File::Rename;
File::Rename::rename @ARGV, '$_ = lc';
Either CODE or VERBOSE can be a HASH of options.
If CODE is a HASH, VERBOSE is ignored and CODE is supplied by the _code key.
Other options are
None by default.
No environment variables are used.
Robin Barker <RMBarker@cpan.org>
Based on code from Larry Wall.
Options -e, -f, -n suggested by more recent code written by Aristotle Pagaltzis.
Errors from the code argument are not trapped.
Copyright (C) 2004, 2005, 2006, 2011 by Robin Barker
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available.