home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntutm94.zoo / pipe.1z / pipe
Text File  |  1992-06-21  |  969b  |  28 lines

  1.  
  2. NAME
  3.     pipe - run programs in a pipe
  4.  
  5. SYNOPSIS
  6.     pipe cmd1 cmd2
  7.  
  8. DESCRIPTION
  9.     pipe runs the program cmd1 with its output redirected to a pipe,
  10.     and  at  the  same time cmd2 with its output redirected from the
  11.     pipe.  If arguments are  given  to  cmd1  and  cmd2,  the  whole
  12.     commands must be enclosed in quotes, and pipe must be run from a
  13.     shell  that supports the MWC or Atari standard extended argument
  14.     scheme.
  15.  
  16. EXAMPLE
  17.     The following command pipes stdout from ls to stdin of cat:
  18.  
  19.         pipe 'ls -l' 'cat -v'
  20.  
  21. IMPLEMENTATION
  22.     Built with the MiNT library, patchlevel 19.  Using  a  different
  23.     library,  or  an earlier version of the MiNT library, may or may
  24.     not cause problems; in particular, various constants defined  in
  25.     <signal.h>  and  <ioctl.h> will probably be wrong if you are not
  26.     using the MiNT library.
  27.  
  28.