1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# mmv
by Vladimir Lanin
maintained by Reuben Thomas <rrt@sc3d.org>
mmv is a program to move/copy/link multiple files according to a set of
wildcard patterns. This multiple action is performed safely, i.e. without
any unexpected deletion of files due to collisions of target names with
existing filenames or with other target names. Furthermore, before doing
anything, mmv attempts to detect any errors that would result from the
entire set of actions specified and gives the user the choice of either
aborting before beginning, or proceeding by avoiding the offending parts.
mmv is distributed under the terms of the GNU General Public License; either
version 3 of the License, or (at your option), any later version. See the
file COPYING for more details.
## Installation and compatibility
mmv should work on any POSIX-1.2001-compatible system.
Reports on compatibility, whether positive or negative, are welcomed.
### Building from a release tarball
A C compiler and libgc are required to build from source. For building from
Git, see below.
To build mmv from an unpacked release tarball `mmv-x.y.tar.gz`, run
`./configure && make && make check`
### Building from Git
The GNU autotools are required: automake, autoconf and libtool.
[Gnulib](https://www.gnu.org/software/gnulib/) is also used, with a
third-party `bootstrap` module; these are installed automatically.
pkg-config is also required. Finally, help2man is required to build the man
page.
To build from a Git repository, first run
```
./bootstrap
```
Then see "Building from a release tarball" above.
## Use
See `mmv(1)` (run `man mmv`).
|