|  |  4.10.6 Pipe links Pipe links provide access to stdin and stdout of any program.
Pipe links are bidirectional.
Syntax:"|: "+ string_for_system
The string_for system will be passed to systemafter connecting
the input and output to the corresponding stdout and stdin. 
Example:
 |  |   link l="|: date";
  open(l); l;
==> // type : pipe
==> // mode : 
==> // name : date
==> // open : yes
==> // read : not ready
==> // write: ready
  read(l);
==> Do 16. Okt 13:16:27  2025
  l;
==> // type : pipe
==> // mode : 
==> // name : date
==> // open : yes
==> // read : not ready
==> // write: ready
  close(l);
 | 
 
 |