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

  1. #------------------------------------------------------------
  2. #         DevShell - Developers Shell                  
  3. #     (C) Copyright 1991 Frank V. Castellucci          
  4. #             All Rights Reserved                      
  5. #
  6. #       DevShell Configuration File
  7. #       General keywords and symbols required when described:
  8. #       
  9. #       ALIAS
  10. #       =
  11. #       VOL
  12. #       UPCASEASSIGN
  13. #
  14. #       Syntax  UPPERCASE               -       required keyword
  15. #               <userinput>             -       user defined
  16. #               [option1|optionN]       -       optional strings
  17. #
  18. #       All strings and assignments can only use 1 line, for now.
  19. #------------------------------------------------------------
  20.  
  21. #------------------------------------------------------------
  22. #       Home and help directory KEYWORD (HOME,HELP) required
  23. #------------------------------------------------------------
  24.  
  25. HOME    =       G:\PUTILITY
  26. HELP    =       G:\PUTILITY
  27.  
  28. #-----------------------------------------------------------
  29. #       Configuration lookaside assignments
  30. #       Usage:  UPCASEASSIGN = <application>
  31. #
  32. #               Where UPCASEASSIGN is what you will be
  33. #               calling on the DevShell command line. Note
  34. #               that when called, case is insensitive.
  35. #               This name can also be referenced in the
  36. #               using command for alias lists.
  37. #
  38. #               <application> is the name, or full path and
  39. #               name, of the application to execute when
  40. #               entering UPCASEASSIGN. 
  41. #-----------------------------------------------------------
  42.  
  43. BROWSE  =       FB              
  44. EDIT    =       T               
  45. CC      =       cl              
  46. LINK    =       link            
  47. RC      =       rc              
  48. MAKE    =       nmake           
  49. PUT     =       ci
  50. GET     =       co
  51. RCSLOG  =       rlog
  52. STAT    =       pstat           
  53. SQZ     =       pkzip           
  54. UNSQZ   =       pkunzip         
  55.  
  56. #-----------------------------------------------------------
  57. #       Volser assignment area
  58. #       Usage : VOL = <assignment> <fullpath>
  59. #
  60. #               Where <assignment> is what you want to 
  61. #               enter with the 'GO' command. 
  62. #
  63. #               <fullpath> is the fully qualified path name
  64. #               that <assignment> refers to.
  65. #----------------------------------------------------------- 
  66.  
  67. VOL     =       os2dir          C:\OS2
  68. VOL     =       dlldir          C:\OS2\DLL
  69. VOL     =       rexxstuff       G:\REXXAPPS
  70.  
  71. #-----------------------------------------------------------
  72. #       Alias assignments area
  73. #       Usage : ALIAS = <assignment> EXEC <commandstring> [using | ?]
  74. #
  75. #               Where <assignment> is what you will enter on
  76. #               the DevShell command line.
  77. #
  78. #               <commandstring> is what will be executed as
  79. #               a results.
  80. #
  81. #               USING - can redirect execution to configuration
  82. #                       name.
  83. #
  84. #               ?     - Will prompt for arguments
  85. #-----------------------------------------------------------
  86.  
  87. ALIAS   =       ccmp            exec using CC
  88. ALIAS   =       ccmp?           exec using CC ?
  89. ALIAS   =       cls             exec cls
  90. ALIAS   =       checkin         exec using PUT ?
  91. ALIAS   =       checkout        exec using GET ?
  92. ALIAS   =       del?            exec del ?
  93. ALIAS   =       delbak          exec del *.bak
  94. ALIAS   =       doeamanip       exec using MAKE -f eamanip.mak
  95. ALIAS   =       lores           exec mode co80,25
  96. ALIAS   =       medres          exec mode co80,43
  97. ALIAS   =       hires           exec mode co80,50
  98. ALIAS   =       maxres          exec mode co80,60
  99. ALIAS   =       ls              exec dir
  100. ALIAS   =       ls?             exec dir ?
  101. ALIAS   =       ps              exec using STAT ?
  102. ALIAS   =       pack            exec using SQZ ?
  103. ALIAS   =       unpack          exec using UNSQZ ?
  104. ALIAS   =       revlog          exec using RCSLOG ?
  105. ALIAS   =       ld              exec dir *.
  106. ALIAS   =       wc              exec call wordcnt();
  107.  
  108.