blob: 1edcaa2471d3a15ca92b90d5e3f27248c8e2104a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
HI06: This example shows how FunnelWeb can be used to allow compile
time information sharing between two cooperating programs written in
different programming languages.
@A The following macro contains the temporary file name used to allow the
two shellscripts to transfer each file to be printed.
@$@<printfile@>@M==@{printme.txt@}
@A Here are the scripts for the local VMS node and the remote UNIX node.
@O@<hi06a.out@>==@{@-
DCL commands
copy @<printfile@> unixnode::
DCL commands
@}
@O@<hi06b.out@>==@{@-
unix commands
print @<printfile@>
unix commands
@}
|