home *** CD-ROM | disk | FTP | other *** search
Fred Fish's Product-Info | 1995-10-22 | 1.4 KB | 60 lines |
- .name
- DosK
- .type
- OS Utility
- .short
- Enhancements of AmigaDOS Commands
- .description
- A DosK is an enhansement to the Amiga Dos system. It does not replace Amiga
- Dos but rather improves it. While Amiga Dos has improved over the years
- it still uses the same interface. This interface is the typed line that
- scrolls past the screen and requires a great knowledge of the options
- available with each Amiga Dos Command. DosK allows you to use Amiga
- Dos commands without typing, in most cases, and very little in others.
- DosK will never scroll past the screen since it supplies a scroll bar
- which will allow you to scroll back up and see what slid past you. Now
- you can also print any text screen without having to use a dump program
- and it is done by using one of the menus that are now at the top of
- your screen along with bookmarks and many other goodies.
- .version
- 1.0
- .author
- Kenneth J. McCormick
- .requirements
- AmigaDOS 3.0+
- .distribution
- Giftware
- .exectype
- AmigaDOS Script
- .construction
- written in AmigaDOS
- .docs
- DosK.Docs
- DosK.guide
- .described-by
- Richard Fish (rjf@amigalib.com)
- .submittal
- Submitted on disk directly by the author.
- .aminet-dir
- util/cli
- .execute
- set choice `RequestChoice "DosK" "Please select an option" "View Doc" "View Guide" "Run Program" "Cancel"`
-
- if $choice EQ "0"
- quit 5
- endif
-
- if $choice EQ "1"
- MetaTool DosK.Docs TEXT
- endif
-
- if $choice EQ "2"
- MetaTool DosK.guide GUIDE
- endif
-
- if $choice EQ "3"
- cd Commands
- path "" ADD
- newcli
- endif
-