NAME
rename-add-prefix - Add prefix to filenames
VERSION
This document describes version 0.006 of rename-add-prefix (from Perl distribution App-FileRenameUtils), released on 2020-08-22.
SYNOPSIS
% rename-add-prefix <prefix> <file>...
Given these files:
foo
bar.txt
new-baz.mp4
this command:
% rename-add-prefix new- *
will rename them as follow:
foo -> new-foo
bar.txt -> new-bar.txt
DESCRIPTION
This is a shortcut for:
% perlmv add-prefix -a avoid_duplicate_prefix=1 -a prefix=<prefix> <file>...
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/App-FileRenameUtils.
SOURCE
Source repository is at https://github.com/perlancar/perl-App-FileRenameUtils.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=App-FileRenameUtils
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
SEE ALSO
App::perlmv and its App::perlmv::scriptlet::add_prefix scriptlet.
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2020, 2019 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.