home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / utility / dubltk25.zip / SNGLE-ED.BAT < prev    next >
DOS Batch File  |  1993-05-31  |  707b  |  14 lines

  1. :This is the DoubleTake Professional file editor batch file for
  2. :editors which can only accept single files on the command line.
  3. :Change the name of this file to DTEd2Fil.BAT to invoke the
  4. :following commands when you press [Alt-E] in DoubleTake.
  5. :The name "edit" following represents the DOS editor which must be in
  6. :your DOS PATH.  Use any editor you choose--replace edit with its name.
  7. :Parameters %3 and %4 are line numbers, which are not used for this
  8. :editor.  See Ed-LinNo.BAT for an example of an editor which can
  9. :begin and immediately position the cursor to a given line.
  10. for %%f in (%1 %2) do edit %%f
  11. pause
  12. :The pause let's you see any DOS messages before
  13. :returning to DoubleTake
  14.