DISKINFO for CP/M Plus
======================

There are a few programs in the public domain which display information about
a CP/M disk but I found that none delivered exactly what I wanted and so I
wrote my own.

All the information comes from the various tables maintained by CP/M 3.1 and
that means this program will not work on CP/M 2.2.

Arguments are optional.  If supplied, they specify the disks to be examined.
In the absence of arguments the program will report the characteristics of
the current disk.

Output can be redirected to a text file or to another program.

Examples:

    E4>diskinfo

	Reports information for drive E:

    E4>diskinfo ac f

	Reports information for drives A:, C: and F:

    E4>diskinfo acf >info.txt

	Writes information for drives A:, C: and F: to info.txt

    E4>diskinfo be >>info.txt

	Appends information for drives B: and E: to info.txt

    E4>diskinfo g | tee g.txt

	Sends information for drive G: to tee.com

Jon Saxton
April 2014