home *** CD-ROM | disk | FTP | other *** search
/ CBM Funet Archive / cbm-funet-archive-2003.iso / cbm / c128 / os / cs-dos / cs-batch.sfx / dobat.txt < prev    next >
Encoding:
Text File  |  1990-02-12  |  756 b   |  23 lines

  1.   Command:     DOBAT
  2.  
  3.   Author:      Randy Winchester
  4.   
  5.   Date:        14 February 1993
  6.  
  7.   Syntax:      DOBAT [d:]filename
  8.  
  9.   Function:
  10.  
  11.   DOBAT is an aid to developing batch files for CS-DOS.  It simplifies
  12. the operations of saving the batch file in memory to disk, removing the
  13. previous version of the batch file from the ramdisk, and installing the
  14. new version of the batch file in the ramdisk.  The whole process can be
  15. summed up in three lines:
  16.  
  17.   put mybat         Saves "mybat" to disk.  An earlier version with the
  18.                     same name is replaced.
  19.   remove mybat      Removes "mybat" from the ramdisk.
  20.   install mybat     Installs the new version of "mybat" in the ramdisk.
  21.                     Mybat is now available for testing.
  22.  
  23.