fmt-ptrn - A simple template system
fmt-ptrn [options] filename [template]
New is a template system, especially useful in conjunction with a simple text editor such as vi. The user maintains templates which may contain format strings. At run time, nf replaces the format strings in a template with appropriate values to create a new file.
For example, given the following template:
// FILE: %%(FILE) // AUTHOR: %%(FULLNAME) // DATE: %%(DATE) // Copyright (C) 1999 %%(FULLNAME) %%(EMAIL) // All rights reserved.
nf will create:
// FILE: foo.cpp // AUTHOR: W. Michael Petullo // DATE: 11 September 1999 // Copyright (C) 1999 W. Michael Petullo new@flyn.org // All rights reserved.
on my computer.
The program understands plaintext or gziped template files.
The fmt-ptrn system also provides a shared library which allows a programmer access to nf's functionality. The system was developed to be light and fast. Its only external dependencies are the C library, glib2 and zlib.
Nf first looks for templates in ~/.fmt-ptrn/templates. Second, nf looks for templates in <datadir>/fmt-ptrn/template, where datadir is defined by autoconf. This directory is usually /usr/local/share or /usr/share.
The templates directory contains several subdirectories matching filename extensions. This may include directories such as html, cpp, c, and tex. Within each subdirectory are the actual template files. The template file named default is the default template used for the filename extension. Other templates can be used by specifying their filename to nf on the command line (see NF(1)).
Certain types of files generally don't have extensions. In this case, nf looks for a template directory with the same name as the file being created. This is useful when using templates to create files with names such as Makefile and README.
When filling a format pattern, nf knows the value for the following format patterns:
In addition, any environment variable can be used as a format pattern. An alternate string to be used in the case of an environment variable being undefined can be specified as follows:
%(UNDEFINED:foo)
This will be replaced with ``foo'' in the created file if UNDEFINED is not a part of one's environment.
The alternative may be a format pattern, too. If FIRSTNAME is defined a Mike, the following:
%(UNDEFINED:%(before="My name is " FIRSTNAME))
will print ``My name is Mike.''
A format pattern can also be acted on by a modifier. The following will print the value of FOO in capital letters:
%(upper FOO)
It makes sense to use some modifiers with a literal, instead of a key which will be replaced by a value. For example:
%(file FOO)
will insert the text contained in a the file whose path is the value of the key FOO. But:
%(file "foo")
will insert the contents of the file named foo.
The following modifiers are currently available:
Several modifiers can act within one format string as illustrated:
%(basename upper FOO)
Modifiers use a stack to be applied. The first modifier to be applied is the one farthest to the right. The last to be applied it the one farthest to the left.
W. Michael Petullo <mike@flyn.org>