home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / os / msdos / programm / 11413 < prev    next >
Encoding:
Internet Message Format  |  1992-12-15  |  1.4 KB

  1. Path: sparky!uunet!spool.mu.edu!wupost!gumby!yale!hsdndev!spdcc!merk!fcshome!fredex
  2. From: fredex@fcshome.UUCP (fred smith)
  3. Newsgroups: comp.os.msdos.programmer
  4. Subject: Re: Normal MSDOS multitasking!
  5. Message-ID: <9212142475@fcshome.UUCP>
  6. Date: 15 Dec 92 13:48:13 GMT
  7. References: <1ghb1vINNccb@ub.d.umn.edu>
  8. Organization: What?!? Absolutely none!
  9. Lines: 27
  10. X-Newsreader: TIN [version 1.1 PL7]
  11.  
  12. Chris (cbusch@ub.d.umn.edu) wrote:
  13. :    Apparantly MSDOS multitasks with the use of the pipe "|".  Is this
  14. : true?
  15.  
  16. NO NO NO NO NO NO  !!!!!!!!!!!!!!!!!!!!1
  17.  
  18. :       How does the | really work?  For example: "type this.txt | more"
  19. : has 'type' and 'more' being ran simultaneously (apparantly).  How is
  20. : this so?
  21.  
  22. MS-DOS is too stupid to multitask. It lacks the facilities. Pipes
  23. are   implemented as sequential processes with a temporary file
  24. in the middle. on Unix, the same thing is literally done by running
  25. two programs "at the same time" with the output of the first going
  26. to the input of the second. BUT NOT ON DOS which is fundamentally
  27. incapable of doing that.
  28.  
  29. : --
  30. : Chris Busch   CBUSCH@ub.d.umn.edu
  31. : "C++ is the language of choice."
  32. : "The use of COBOL cripples the mind; its teaching should, therefore,
  33. :     be reguarded as a criminal offense." - E. W. Dijkista 
  34. : "High-level languages should remove burden from the programmer, not
  35. :  put burden on the programmer!"
  36. : "Don't ask 'why would you do that?' instead ask 'why wouldn't you do that?'"
  37.