• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H22-Mar-2021-84

lib/File/H22-Mar-2021-396173

t/H22-Mar-2021-860624

Build.PLH A D22-Mar-2021717 3026

CONTRIBUTINGH A D17-Mar-2021111 53

ChangesH A D22-Mar-20213.2 KiB11279

MANIFESTH A D22-Mar-2021640 2928

META.jsonH A D22-Mar-20211.4 KiB5958

META.ymlH A D22-Mar-2021861 3534

Makefile.PLH A D18-Mar-2021953 3124

READMEH A D17-Mar-20211.7 KiB5940

rename.PLH A D17-Mar-20214.1 KiB20035

README

1File-Rename version 1.20
2========================
3
4File::Rename provides an implementation of Larry Wall's eg/rename
5command.  All I have done is add some error checking and (more recently)
6add the File/Rename.pm module.
7
8An earlier version of the script is out in the Internet and is included
9with some linuxes, and the original eg/rename is not included in the
10Perl distribution, so I have put this up on CPAN.
11
12A revised version of the earlier script is now on the Internet,
13which includes more options.  This script, distinguished by
14"Getopt::Long::Configure('bundling')", was not written by me; I think
15the author is Aristotle Pagaltzis.  Version 0.10 of this distribution
16has similar options to the revised script.
17
18For Windows, the script is called file-rename to avoid clashes with
19existing rename command.
20
21In 1.00, File::Require::Options is a separate module,
22and is not made visible by C<require File::Rename>.
23
24INSTALLATION
25
26To install this module type the following:
27
28   perl Makefile.PL
29   make
30   make test
31   make install
32
33or if you have Module::Build
34
35   perl Build.PL
36   perl Build
37   perl Build test
38   perl Build install
39
40
41DEPENDENCIES
42
43This module requires these other modules and libraries:
44File::Basename File::Path File::Spec Getopt::Long
45(all included with Perl).
46
47Testing requires File::Temp and Test::More which are
48available with perl 5.6.0.  I have successfully installed
49those modules for perl 5.005_05 and tested this module.
50
51COPYRIGHT AND LICENCE
52
53Copyright (C) 2005, 2006, 2007, 2011, 2018, 2020, 2021 by Robin Barker
54
55This library is free software; you can redistribute it and/or modify
56it under the same terms as Perl itself, either Perl version 5.8.4 or,
57at your option, any later version of Perl 5 you may have available.
58
59