Module JoinTextProc

module JoinTextProc: sig .. end
Convenience functions for forking Unix commands oriented for text processing.

All functions provided by this module fork commands given in the style of the Unix.execvp function. That is, a command is a program name plus an array of command line arguments and the program name is searched in path.
See also Unix.execvp.



Additionally, the child process is controled by a combination of kill/wait channels, and the I/O channels are connected to producers (type JoinCom.Prod.t) for the Async interface, and to ordinary lists for the Sync interface.
module Async: sig .. end
module Sync: sig .. end