home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / BEEHIVE / ZSUS / Z3HELP-2.LBR / E.LBR / ECHOCOM.HZP / ECHOCOM.HLP
Text File  |  2000-06-30  |  2KB  |  56 lines

  1. ;
  2.                                    ECHO.COM                                   
  3.  
  4.              Size (recs) CRC   Version    Author/Latest Issue      Disk
  5. ECHO11.COM     1k (5)    5A71  1.1        Cameron Cotrill 9/87     Z3COM3
  6. ECHO11.CIM     1k (5)    D90B  1.1        Cameron Cotrill 9/87     Z3COM3
  7.  
  8.   1- Syntax  2- Notes  3- Examples of Use                                     
  9.  
  10.  
  11.    ECHO  allows  text entered at the command line to be typed  to  the  screen 
  12. without  the  operating system acting on it.   This is useful  for  displaying 
  13. messages from aliases and between commands of a multiple command line.
  14.  
  15.    ECHO  also provides a convenient way of sending escape sequences to the CRT 
  16. or printer.  ECHO uses direct BIOS calls without any character translation, so 
  17. sequences  for programming intelligent devices can be issued by  running  ECHO 
  18. and typing  in those sequences.  
  19. :1
  20.  
  21.  
  22.    Syntax:  ECHO text         ...send <text> to console
  23.  
  24.             ECHO $text        ...send <text> to printer 
  25.  
  26.  
  27.    Any characters  are automatically capitalized when echoed since the command 
  28. input line editor capitalizes  the command lines.  If the first non-blank char
  29. of the text is a "$",  then ECHO sends its output to the LST: device.
  30. :2
  31.  
  32. ECHO Notes:
  33.  
  34.    a. Version 1.1  is  the  result  of  applying  code  from RCPECHO in z33 to
  35.       ECHO10, resulting in a type 3 transient echo that knows case.
  36. :3
  37. Examples of Use:
  38.  
  39.    a. ECHO hello, world
  40.  
  41.       - sends text "HELLO, WORLD" to console 
  42.  
  43.    b. ECHO Assembling;m80 =$1;^E
  44.               if input;echo Linking;l80 /P:100,$1,A:SYSLIB/S,$1/N,/E;fi
  45.  
  46.       - a single multiple command line will print the informative messages 
  47.         "ASSEMBLING" and "LINKING" during the respective commands
  48.  
  49.    c. ECHO ^Z
  50.  
  51.       - clears CRT screen (on terminal where ^Z clears the screen)
  52.  
  53.    d. ECHO $^L
  54.  
  55.       - form feeds printer (assuming printer responds to form feed char)
  56.