home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / util / shell / zshell / product-info < prev    next >
Fred Fish's Product-Info  |  1995-10-23  |  3KB  |  102 lines

  1. # This file contains product information that can be used by
  2. # KingFisher 2.0 and other similar tools.
  3.  
  4. .name
  5. ZShell
  6. .type
  7. OS Utility
  8. .aminet-dir
  9. util/shell
  10. .short
  11. Small, fast shell with CFN and review.
  12. .description
  13.  ZShell is a small (31K), fast and powerful Shell with many (65)
  14.  builtin commands. So it replaces most of the commands in the C:
  15.  directory (like LIST, COPY etc.) what effects in saving disk space
  16.  and reducing disk accesses. There is no way around ZShell for
  17.  those who do not have a harddisk or still have Kickstart 1.2/1.3 .
  18.  
  19. Some of the features:
  20.  
  21.  * Freeware, no payment required !
  22.  * Usage is similar (or better) to the standard AmigaDOS shell.
  23.  * Supports the standard housekeeping commands which are builtin,
  24.    so no disk access is necessary.
  25.    eg. list, dir, cd, assign, delete, copy, move, path, info, type
  26.  * A total of 65 builtin commands.
  27.  * About 31K small (pure assembler code, source included).
  28.  * Starting from Workbench (!) or CLI. No installation needed.
  29.  * File name completion by simply pressing TAB; shows all matches.
  30.  * Review buffer to see again what scrolled out of the window.
  31.  * Some commands and debugging features for programmers.
  32.  * Online Help function and AmigaGuide documentation with examples.
  33.  * Command line editing better than OS2.0/3.0 Shell.
  34.  * Support of OS2.0+ and OS3.0+ specific features.
  35.  * Wild cards and recursive processing.
  36.  * Real RUN and NEWCLI command that reenters ZShell quickly.
  37.  * DIR and LIST both sort (by default) and show filesizes.
  38.  * Application-Window/-Icon
  39.  * Can open window on own screen
  40.  * 100% script compatibility
  41.  * Can create and show Hard- and Softlinks.
  42. .version
  43. 2.8
  44. .date
  45. 1995.08.25
  46. .author
  47. Paul Hayter, Martin Gierich
  48. .reference
  49. FreshFish-Vol8-1:New/util/shell/ZShell/
  50. 2.2
  51. AmigaLibDisk537:ZShell/
  52. 1.3
  53. .distribution
  54. Freeware
  55. .address
  56.  
  57. Paul Hayter
  58. PO Box 331
  59. Ballina
  60. 2478
  61. AUSTRALIA
  62.  
  63. Martin Gierich
  64. Narzissenweg 7
  65. 76297 Stutensee
  66. GERMANY
  67. .email
  68. uj3w@rz.uni-karlsruhe.de
  69. .source
  70. Includes source in assembler
  71. .docs
  72. Readme
  73. ZShell.doc
  74. ZShell.guide
  75. .described-by
  76. Dan Fish (daf@starfish.amigalib.com)
  77. .submittal
  78. Downloaded via ftp from wuarchive.wustl.edu.
  79. .execute
  80. set choice `RequestChoice "ZShell" "Please select an option" "View Readme" "View Doc" "View Guide" "Run Program" "Cancel"`
  81.  
  82. if $choice EQ "0"
  83.   quit 5
  84. endif
  85.  
  86. if $choice EQ "1"
  87.   MetaTool ReadMe TEXT
  88. endif
  89.  
  90. if $choice EQ "2"
  91.   MetaTool ZShell.doc TEXT
  92. endif
  93.  
  94. if $choice EQ "3"
  95.   MetaTool ZShell.guide GUIDE
  96. endif
  97.  
  98. if $choice EQ "4"
  99.   assign c: "" ADD
  100.   wbrun ZSH
  101. endif
  102.