home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / DSHL11.ZIP / DSHELL.DOC < prev    next >
Text File  |  1991-12-22  |  5KB  |  140 lines

  1. /*------------------------------------------------------*/
  2. /*           DevShell - Developers Shell                */
  3. /*              Version 1.0 Revision 1.7                */
  4. /*                 Documentation                        */
  5. /*  (C) Copyright 1991, 1992 Frank V. Castellucci       */
  6. /*               All Rights Reserved                    */
  7. /*------------------------------------------------------*/
  8.  
  9. ----------------------- DO NOT REMOVE --------------------
  10.  
  11. Legal Stuff
  12. -----------
  13.  
  14. DevShell is released to the public domain with the following
  15. restrictions:
  16.  
  17.         1. At least the following files must be included when
  18.            tranferring or copying between computers, BBS, etc.:
  19.            
  20.                 DevShell.Cmd
  21.                 DevMan.Cmd
  22.                 DShell.Doc
  23.                 DShell.Cfg
  24.                 
  25.         Optional Files:
  26.         
  27.                 WordCnt.Cmd
  28.                 
  29.         2. All copyright notices must be maintained in the DevShell.Cmd
  30.            DevMan.Cmd, and DevShell.Doc files.
  31.            
  32.         3. The addition of new features or files should be listed and
  33.            documented in this text.
  34.            
  35.         4. All enhancments, fixes, etc. should be listed in the Log
  36.            section, with the most recent changes shown first.
  37.            
  38.         5. It (DevShell and all files) is to be provided for FREE. If
  39.            you paid for this then you were ripped off and should burn
  40.            down the house of the scum that did it to you!
  41.            
  42.  
  43. Package
  44. -------
  45.  
  46. The following files are included with Release 1.10 of DevShell:
  47.  
  48.         DevShell.Cmd    -       OS/2 Rexx Command File
  49.         DevMan.Cmd      -       Online Help System
  50.         DShell.Doc      -       Documentation
  51.         DShell.Cfg      -       Sample Configuration File
  52.         WordCnt.Cmd     -       Simple Word Count Program
  53.         
  54. Anyone making additions to the DevShell system should indicate the
  55. files here as well.
  56.  
  57. Contact
  58. --------
  59. Frank V. Castellucci    
  60. RR1 265 Overlook Way
  61. Purdys, NY. 10578
  62.  
  63.         Phone           -       (914) 277-4312
  64.         CI$             -       72261,2700
  65.         BBS Frequented  -       Gilmores ( /359 ), Fernwood, 
  66.                                 Execnet, OS/2 Shareware
  67.  
  68. Introduction
  69. ------------
  70. While doing non-stop development for Osrm2 I decided it would be good
  71. to take a break and do something different for a weekend.
  72.  
  73. As a mainframe babyboomer I had experience with the VM flavor
  74. of Rexx ( 4-5 years ago! ) and was somewhat familiar with the nature of
  75. the puppy. This re-visit soon made me realize there is more under
  76. the hood then I considered during my first encounter.
  77.  
  78. So DevShell was, and is being, created as an educational vehicle as well.
  79.  
  80. The goal is to create an easy to understand, powerful, reconfigurable,
  81. and fun developers shell using OS/2's Rexx. Version 1.0 of DevShell is
  82. what I have been able to do up to this point ( 12.07.1991 ).
  83.  
  84. Before you pass judgement on it, enhance it! Like I said, I am just 
  85. picking it up again and I KNOW it is rusty, even potentially buggy in
  86. a few areas. But if you feel the need to comment to me, I can be
  87. reached at the above places at various points of the 24 hour day.
  88.  
  89. DevShell        
  90. --------
  91. DevShell is an enhanced command enviroment geared towards the 
  92. developer. It is completely ( even the on-line help ) written in Rexx so
  93. it can be modified to suit the users own ideas and needs.
  94.  
  95. DevShell builds its personality by definitions in the configuration
  96. file (Dshell.Cfg). Within this file are application, volume, and
  97. alias executable assignments that reduce the need for knowing every
  98. file, directory, compiler name, etc.
  99.  
  100. The real power, at this release, is the alias EXEC statements which
  101. can indirectly reference applications (cl,make,link,etc...) with
  102. one (1) command. 
  103.  
  104. With the EXEC command you can even extend the shell to call other
  105. Rexx '.CMD' files. 
  106.  
  107. Help
  108. ----
  109. Forget it. You have the source, you have the online help system, you
  110. have the configuration file, look at it! It is very straight foward and
  111. a basic programmer could pick it up overnight, and soon find themselves
  112. enhancing it.
  113.  
  114. History
  115. -------
  116.  
  117. 91/12/22 See devman.cmd for more information on added commands
  118.          check the $Log statement at the end of DevShell.Cmd for
  119.          fixes, additions, etc...
  120.          
  121.          Added WordCnt.Cmd ( Simple word count utility )
  122.          
  123. 91/12/08 First Pass at making public    
  124.  
  125. "No matter where you go, there you are."
  126.  
  127. ---------------------------------------------------------------------
  128.  
  129. $Log:   dshell.doc $
  130. Revision 1.3  91/12/08  19:50:25  FJC
  131. Final for first pass
  132.  
  133. Revision 1.2  91/12/08  12:57:21  FJC
  134. Added intro, rules, general information.
  135.  
  136. Revision 1.1  91/12/01  23:24:16  FJC
  137. First draft
  138.  
  139. -----
  140.