home *** CD-ROM | disk | FTP | other *** search
/ Big Blue Disk 27 / bbd27.zip / BATCH.TXT < prev    next >
Text File  |  1988-10-21  |  2KB  |  49 lines

  1. |A╔══════════════╗════════════════════════════════════════════════╔══════════════╗
  2. |A║ |6Happy Hacker |A║════════════════ ^1Batch Utilities |A═══════════════║ |6Happy Hacker |A║
  3. |A╚══════════════╝════════════════════════════════════════════════╚══════════════╝
  4. ^Cby
  5. ^CPaul Scanlon
  6.  
  7.    Batch files are a very powerful feature of PC-DOS.  They allow branching,
  8. conditional testing, and the passing of parameters to programs.  However, there
  9. are some other things, such as formatted screen output, that you still must
  10. write a program in a regular programming language if you want to do.  Batch file
  11. text output is generally limited to simple text lines output with the ECHO
  12. command.  However, this set of utilities give you some more options which make
  13. batch files a powerful programming language in their own right.
  14.  
  15.    These utilities are the beginning of a set of utilites that will replace and
  16. enhance many of the DOS Batch file commands.
  17.  
  18. A quick look at these programs :
  19.  
  20.     CT.COM  -- toggles the cursor on and off.
  21.     COFF.COM -- turns the cursor off
  22.     CUON.COM -- turns the cursor off
  23.     CLR.COM -- clears a window of a given size
  24.     LOCATE.COM -- much like the LOCATE command in BASIC, positions the cursor
  25.     SCROLL.COM -- scrolls a given window on the screen (up or down)
  26.     WAIT.COM -- pauses for specified period of time (up to 9 seconds)
  27.     WRITE.COM -- replaces the echo command, puts one line of text on the crt
  28.  
  29.    The included TEST.BAT file demonstrates the use of the utilities as well as
  30. explains their use.
  31.  
  32.    A text file is included (already formatted for 8.5x11) that can be printed
  33. simply by type COPY BATCH.PRN PRN at the DOS prompt.  It has no embedded printer
  34. codes, so should print even on a daisy wheel.
  35.  
  36.    To run this program outside the BIG BLUE DISK menu, type ^1TEST^0.
  37.  
  38. DISK FILES THIS PROGRAM USES:
  39. ^FBATCH.PRN
  40. ^FTEST.BAT
  41. ^FCLR.COM
  42. ^FCOFF.COM
  43. ^FCT.COM
  44. ^FCUON.COM
  45. ^FLOCATE.COM
  46. ^FSCROLL.COM
  47. ^FWAIT.COM
  48. ^FWRITE.COM
  49.