In this example, a text file (TIME_TEST.TXT) is being copied
from the OpenVMS platform to Microsoft Windows and being renamed VMS_TEST.TXT.
In the next COPY statement, the VMS_TEST.TXT file is copied from
the Microsoft Windows platform back to OpenVMS and being renamed WIN_TIME_TEST.TXT.
WINTXT PROCESS SNODE=W2S.4200.CDWOPS7 snodeid=(userid,pwd)
VMS2WIN COPY FROM (DSN=DISK$AXP:[NDM_3400.INPUT]TIME_TEST.TXT DISP=SHR pnode) -
TO (DSN="C:\output\vms_test.txt" DISP=RPL snode)
WIN2VMS COPY FROM (DSN="C:\output\vms_test.txt" DISP=SHR snode) -
TO (DSN=DISK$AXP:[NDM_3400.OUTPUT]WIN_TIME_TEST.TXT DISP=RPL pnode)
|