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