FNM - FileName Manipulator
======================================================================

FNM is a command-line application designed to make filename
manipulation of multiple filenames easy.


Building FNM
======================================================================

Navigate to the directory containing the Makefile and run:

 $ make all

If all goes well the binary file (named fnm) should now be located
here:

 bin/fnm

NOTE: The path is relative to the directory containing the Makefile.


Using FNM
======================================================================

Here follows some examples of how FNM can be used.


Converting Filename(s) to Lower Case
----------------------------------------------------------------------

If you have a file named FOO.TXT and want to convert all characters in
the filename to lower case, run:

 $ fnm -l FOO.TXT

You can also perform the same operation on multiple files. For
example, to perform the same action on all files in the current
working directory, run:

 $ fnm -l *


Converting Filename(s) to Upper Case
----------------------------------------------------------------------

If you have a file named foo.txt and want to convert all characters in
the filename to upper case, run:

 $ fnm -u foo.txt

You can also perform the same operation on multiple files. For
example, to perform the same action on all files in the current
working directory, run:

 $ fnm -u *


Replacing Part of Filename(s)
----------------------------------------------------------------------

If you have a file named fooxyz.txt and want to replace the character
sequence "xyz" with "bar", run:

 $ fnm -r xyz bar fooxyz.txt

You can also perform the same operation on multiple files. For
example, to perform the same action on all files in the current
working directory, run:

 $ fnm -r xyz bar *

The replacement operation can also be used to remove parts of a
filename. To remove the character sequence "xyz" rather than replacing
it, run:

 $ fnm -r xyz "" fooxyz.txt


Contact Information
======================================================================

christofer.a.jonsson@gmail.com


######################################################################

Copyright (C) 2009 Christofer Jonsson

This file is part of FNM.

FNM is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your
option) any later version.

FNM is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with FNM.  If not, see <http://www.gnu.org/licenses/>.

######################################################################
