%%%%%%%%%%%%%%%
%%   ifold   %%
%%%%%%%%%%%%%%%

Fold input to create indented text. Each line of input will be treated as a
separate entity. It will print from column #1 to screenwidth and all
subsequent characters will be folded and indented by the same amount of
space. Folding takes place at a space but will be forced at the last column
if there are no spaces available on the line.

Version:  0.2  (2000-12-30)

Compile:  just type 'make'

Copying:  GNU GPL

To use:   cat textfile | ifold [<indentamount> [<sceenwidth>]]

This means that ifold works as a filter taking input from stdin and writing
to stdout. Two integer arguments may optionally be given. Default values
taken from ifold.h are assumed for missing arguments.

Example:  cat mytext | ifold 10 40

resulted in:
Test:     This text is to be folded by 
          ifold with 10 spaces of 
          indentation.

where the file mytext contained:

Test:     This text is to be folded by ifold with 10 spaces of indentation.


Warning:  ifold is a very simple hack because I was too lazy to
          code this with bash and sed.


%%%%%%%%%%%%%%%
%%    csv    %%
%%%%%%%%%%%%%%%

The 'csv' program preprocesses files in '*.csv' format to input
data into an SQL database.

It will be used by the db script in a later version. For the time a
prototype script named 'csv2sql.sh' can be found in the 'dbtool/scripts'
directory.

