home *** CD-ROM | disk | FTP | other *** search
/ Mega CD-ROM 1 / megacd_rom_1.zip / megacd_rom_1 / DESQVIEW / MIXEDBAG.ZIP / TEE.DOC < prev    next >
Text File  |  1989-04-28  |  877b  |  26 lines

  1. TEE (v1.0) - Send standard output to the console and also to a file
  2.  
  3. This is about as close to the UNIX TEE as you will get with DOS.  You
  4. can have TEE filters, but you need to wait for the program to
  5. complete before you see the first byte of output!  This TEE will
  6. redirect to a file and standard output AS IT HAPPENS.
  7.  
  8. This program is Copyright 1989, by David G. Thomas.
  9. I may be reached at the PowerSoft BBS  (404) 928-9294
  10.  
  11. You are free to use this program as you please, and distribute it
  12. to your friends.  I only ask that you do not alter the program, and
  13. you include this file when you pass it on.
  14.  
  15.  
  16. USAGE: TEE command_line >out_file
  17.  
  18. NOTE: Internal DOS commands, like DIR, need to be quoted if they are
  19.       supplied arguments.
  20.  
  21.  
  22. Examples: TEE "DIR *.EXE" >dir.lst
  23.           TEE CL /C TEST.C >C.OUT
  24.  
  25. Don't forget to redirect output to a file!
  26.