All examples for PIPE
# run 2 SIA processes and 1 SU process as follows:
# SIA1 --> SU --> SIA2
##########################################################################
*call pipe su-in # open an input pipe for SU
*call pipe su-out # open a pipe for SU output
...
*call write su ... su-in # organize writinig in SU format into
# the input pipe; you may use
# several writes...
*end # no more traces beyond this point
*proc 2 # start another concurrent
# SIA process
...
*call readbf ... # reading from SU-formatted
su # files using readbf
files su-out
...
...
*call shell csh SU_script # start the shell for SU script
input su-in # connect its I/O to 'write'
output su-out # and 'readbf' above