Named Pipes

A detailed breakdown of named pipes in Murex

Background

Wikipedia describes a named pipe as the following:

In computing, a named pipe (also known as a FIFO for its behavior) is an extension to the traditional pipe concept on Unix and Unix-like systems, and is one of the methods of inter-process communication (IPC). The concept is also found in OS/2 and Microsoft Windows, although the semantics differ substantially. A traditional pipe is “unnamed” and lasts only as long as the process. A named pipe, however, can last as long as the system is up, beyond the life of the process. It can be deleted if no longer used. Usually a named pipe appears as a file, and generally processes attach to it for IPC.

Where Murex differs from standard Linux/UNIX is that named pipes are not special files but rather an object or construct within the shell runtime. This allows for more user friendly tooling and syntactic sugar to implemented around it while largely still having the same functionality as a more traditional file based named pipe.

In Murex

In Murex, named pipes are described in code as a value inside angle brackets. There are four named pipes pre-configured: <in> (stdin), <out> (stdout), <err> (stderr), and <null> (/dev/null equivalent).

You can call a named pipe as either a method, function, or parameter.

As a method:

<in> -> command parameter1 parameter2 parameter3

As a function:

command parameter1 parameter2 parameter3 -> <out>

As a parameter:

command <out> <!err> parameter1 parameter2 parameter3

See Also


This document was generated from gen/user-guide/named-pipes_doc.yaml.

This site's content is rebuilt automatically from murex's source code after each merge to the master branch. Downloadable murex binaries are also built with the website.

Last built on Thu Aug 15 14:38:34 UTC 2024 against commit 50ed9d650ed9d6df391240d3c2c02e623636e508dfcdad1.

Current version is 6.2.4000 which has been verified against tests cases.