in reply to Recursive renaming script

You could convert those comments into POD and get a manpage for free with perldoc:
=head1 Usage: rename-script [OPTIONS] PATH Options: -p Pattern to look for in file's name. Default '\s' -r Replacement string. Default '_' -n Don't use 'g' option modifier with pattern matching =cut
Then at your command prompt...
$ perldoc rename-script
You could get even fancier with Pod::Usage.

Replies are listed 'Best First'.
Re^2: Recursive renaming script
by amr noman (Initiate) on Dec 02, 2011 at 18:04 UTC

    Cool, I had no prior experience with documenting stuff. Replaced the comments, thanks.