pipe() Source Driver
The pipe source driver opens a named pipe with the specified name and listens for messages. It is used as the native message delivery protocol on HP-UX.
Important Information
Status
How to Test
mkfifo [OPTION]... NAME...Configuration File Used
@version: 3.31
@include "scl.conf"
source s_pipe {
pipe("/Users/yash/Documents/myPipe");
};
destination console{
file(/dev/stdout);
};
log {
source(s_pipe);
destination(console);
};Proof


Last updated