genode/repos/gems/src/app/pipe/README
Emery Hemingway f27953c48d Standalone POSIX pipe utility
Pipe between files using POSIX stdio. This facilitates raw transfers
between arbitrary resources exposed by the VFS library.

Fix #2708
2018-03-08 15:22:12 +01:00

16 lines
373 B
Plaintext

The pipe utility is for piping between files using the
semantics of POSIX stdio.
An example of piping clock jitter to a terminal session:
! <start name="pipe">
! <resource name="RAM" quantum="2M"/>
! <config>
! <vfs>
! <jitterentropy name="rng"/>
! <terminal name="tty"/>
! </vfs>
! <libc stdin="/rng" stdout="/tty"/>
! </config>
! </start>