CONTENTS:                    SaarAG PD-Disk #225
¯¯¯¯¯¯¯¯¯                    ===================

             Amiga Empire Version 2.2w by Chris Gray & David Wright

If everything unpacked OK, you should have the following files on this disk:

    ReadMe - this file.

    Changes - A list of changes from 1.33w through 2.2w. Only useful for
        people who have used Amiga Empire before, and want to see
        what the new features of this version are.

Note that I (Chris Gray) have moved slightly since my last distribution of
Amiga Empire. I can now be reached at:

    Chris Gray
    #808 - 8515 - 112 St.
    Edmonton, Alberta
    CANADA  T6G 1K7

Please note that I am EXTREMELY poor at answering physical mail - I have
unanswered mail that is over a year old. Email is much better; I usually
reply within a week or so. By Email, my preferred address is:

    {uunet,alberta}!myrias!ami-cg!cg    or    ami-cg!cg@myrias.COM

I also have a CompuServe account, which I check every couple of weeks:

    74007,1165


I (David Wright) can be reached at:

   David Wright
   4262 Bennington
   Brunswick, OH USA 44212
   (216) 273-1064 (voice)

   You should try and contact me first if you have a question regarding
Empire 2.2w, as Chris may not have worked on that part of 2.2w, and I am
better about answering mail. :-)

---------------------------------------------------------------------------
*****************************************************************************

                          The DISK-Masher
                   Copyright (c) 1989-1991 SDS Software


*****************************************************************************

    This archive contains the following files for use with the Amiga
series of personal computers.

    README.TXT - The file you are now reading.

    DMS - The DISK-Masher version 1.03 CLI/Shell GENERIC version

    DMS.doc - Partial online documentation to The DISK-Masher

    Update.doc - Latest version update documentation.

    Notice.txt - An important notice to Warp/UnWarp users.

    DMS103.EXE - Self-extracting archive containing the above files.  It
                 has been padded out to a multiple of 1024 bytes so it
                 does not need to 'chopped' if transferred via modem.
                 This has been done for security purposes to prevent
                 bogus versions from being spread.

    If you have any suggestions, complaints, questions, or bug reports,
please write to us and be sure to include your full name, address,
phone number, and computer configuration.

    SDS Software.
    Suite 126
    4885-A Mcknight Rd.
    Pittsburgh, PA  15237
---------------------------------------------------------------------------

                                  ReqText

                     A Freely Redistributeable Program
                                written by
                           Kay-Uwe Drangmeister


NAME
    ReqText - Request one line of text from the user

SYNOPSIS

    ReqText AskText [DefaultText] [LEN length]

    where  AskText  becomes  the  Window  title  of  the  requester window,
    DefaultText  is the (optional) text appearing inside the string gadget,
    length is the maximum input size.

OPERATION

    ReqText  is  used  whenever  you  want to send some input from keyboard
    (e.g.   a  filename,  a  password,...) to other files.  By default, the
    output  goes to STDOUT.  This is very useful in conjunction with piping
    commands:

      ReqText Psw? len 8 | crypt >nil: crypted_stuff ram:file
    will pop a requester asking for a 8-letter password which will be piped
    to   (my  famous  :-)  crypt  program  which  will  then  decipher  the
    crypted_stuff to a file in ram:  (>nil:  is used to suppress the "Enter
    password:" message.)

      ReqText "New search path?" "dh0:,dh0:c/" | type to env:path
    or simply
      ReqText >env:path "New search path?" "dh0:,dh0:c/"
    will  ask  for  the  search  path  for  WShell  and set the environment
    variable accordingly.

    In  shell scripts, you can query file or path names, instead the simple
    yes/no decisions by the "Ask" command.

RETURN CODE

     0 if  the  user  entered text and pressed <return> or the <Ok> gadget,
       the  text  is then sent to STDOUT, always followed by an CR, even if
       it is an empty text.

     5 if  the  user  hit  the  <Cancel>  or  the  close  gadget or pressed
       <RAmiga-l>.  No text is sent in this case.

    20 if ReqText runs out of memory or a library is not present.

REQUIRES

    Kickstart 1.2+
    arp.library V39+ is used for argument parsing and output
    req.library V1+ is used for the text requester
    684 Bytes on your work disk

AUTHOR'S ADDRESS

    If  you  find this program useful, PLEASE think about sending me a nice
    post-card of your country. I *love* receiving mail.
    Mail and bug reports are VERY welcome to:

    Kay-Uwe Drangmeister		    ...cbmehq!cbmger!inside!karludo
    Tannenfelsstraße 17
    6414 Hilders
    Germany
    -------

