home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 17 / CD_ASCQ_17_101194.iso / dos / util / eddy7q / eddy.use < prev    next >
Text File  |  1994-08-07  |  5KB  |  93 lines

  1. ;
  2. ;       EDDY.USE - Defines "Point-n-Shoot" commands for EDDY
  3. ;
  4. ; This file is an example, illustrating how the EDDY.USE file may be
  5. ; set up to define the programs to be executed by EDDY in response to
  6. ; the "Point-n-Shoot" commands - [Shift+F9] and [Shift+^F9].
  7. ;        Refer to EDDY.DOC, Section 14.2 for details.
  8. ;
  9. ; You should build your own EDDY.USE file (with any editor or word
  10. ; processor - even EDLIN! - that can create ASCII-only text files), to
  11. ; define the types of files and the programs you use most frequently.
  12. ;
  13. ; Lines beginning with semi-colon are COMMENTS ONLY, ignored by EDDY.
  14. ; They are included here to only clarify the examples.  Command lines
  15. ; have a leading blank, for readability only - the blank isn't required.
  16. ;*********************************************************************
  17. ;---------------------------------------------------------------------
  18. ;      Use IBM Personal Editor, with 'C'/'C++' key profile
  19.  *.C   C:\PE\PE2 /PC:\PE\CE.PRO   %
  20.  *.H   C:\PE\PE2 /PC:\PE\CE.PRO   %
  21.  *.CPP C:\PE\PE2 /PC:\PE\CPE.PRO   %
  22. ;---------------------------------------------------------------------
  23. ;      Use IBM Personal Editor, with 'assembler' key profile
  24.  *.ASM C:\PE\PE2 /PC:\PE\ME.PRO   %
  25. ;---------------------------------------------------------------------
  26. ;      Use IBM Personal Editor, with 'word processing' key profile
  27.  *.BAT C:\PE\PE2 /PC:\PE\WP.PRO   %
  28. ;---------------------------------------------------------------------
  29. ;      In the following lines, the "|" in the first position means...
  30. ;      ...pause after executing, to allow review of screen display...
  31. ;      ...before returning to EDDY
  32. ;---------------------------------------------------------------------
  33. ;
  34. ;      Use PKZIP to view .ZIP files, piping output into "MORE"
  35.  | *.ZIP X:\UTIL\PKZIP /v  % | C:\SYSTEM\DOS\MORE.COM
  36. ;
  37. ;      If we press [PgDn] when the preceding command is displayed...
  38. ;      ...we get this one, so we can actually extract files...
  39. ;      ...rather than just looking at the table of contents
  40.  *.ZIP X:\UTIL\PKUNZIP  %
  41. ;
  42. ;      Press [PgDn] yet again to set ZIP date to latest file date
  43.  *.ZIP X:\UTIL\PKZDATE  %
  44. ;---------------------------------------------------------------------
  45. ;      Use 'View' option of LHA (from Haruyasu Yoshizaki) on .LZH files
  46.  | *.LZH X:\UTIL\LHA V   % | C:\SYSTEM\DOS\MORE.COM
  47. ;
  48. ;      Use 'View' option of ARJ on .ARJ files
  49.  | *.ARJ X:\UTIL\ARJ V   % | C:\SYSTEM\DOS\MORE.COM
  50. ;
  51. ;      Use 'View' option of PKARC on .ARC files
  52.  | *.ARC X:\UTIL\PKARC V   % | C:\SYSTEM\DOS\MORE.COM
  53. ;
  54. ;      Assume "EXE" is self-extracting archive
  55. ;      (else why use [Sh+F9] -- [Alt+F9] would be more normal)
  56.  | *.EXE X:\UTIL\FV V   %
  57. ;---------------------------------------------------------------------
  58. ;      Use Bob Montgomery's picture file viewing program on .GIF files
  59.  *.GIF X:\UTIL\VPIC   %
  60. ;
  61. ;---------------------------------------------------------------------
  62. ;      Use the A.S.P. "CATALOG" program to update catalog data files
  63.  *.DTA A:\CATALOG  %
  64. ;
  65. ;*********************************************************************
  66. ; After defining all the file extensions you want to associate with a
  67. ; specific program to use with "Point-n-Shoot", you may want to
  68. ; define a default for any other types of files.
  69. ;*********************************************************************
  70. ;      Use IBM Personal Editor, with word processor key profile...
  71. ;      ...for any files not explicitly defined above -- EXCEPT...
  72. ;      ...that .BAT, .COM and .EXE files will be treated as tho...
  73. ;      ...you pressed [Alt+F9].  If you have a program you want...
  74. ;      ...to use with executable files, put entries for those...
  75. ;      ...extensions in EDDY.USE before the default (*.*) entry...
  76. ;      ...See the "*.EXE" entry above, for example
  77.  *.* C:\PE\PE2 /PC:\PE\WP.PRO   %
  78. ;
  79. ;*********************************************************************
  80. ; Finally, to use Point-n-Shoot on ALL matching files in the working
  81. ; directory (except any tagged "Ignore"), put a "^" at the beginning
  82. ; of the line.  If you also put a "|" after the "^", EDDY will pause
  83. ; before resuming control, to give you a chance to look at the screen
  84. ; before continuing.  These entries are used if you press [Shift+^F9].
  85. ;*********************************************************************
  86. ;      Assemble all .ASM files (except 'ignored' files), pausing...
  87. ;      ...after each file is assembled - to check any error messages
  88.  ^| *.ASM D:\MASM /N/ID:\   %,NUL,D:\;
  89. ;---------------------------------------------------------------------
  90. ;      Print all .LST files, without pausing between files
  91.  ^ *.LST C:\SYSTEM\DOS\PRINT   %
  92. ;---------------------------------------------------------------------
  93.