We are transferring several MVS files over to a UNIX server using mode=binary. On the UNIX side the file has no line/record terminator. Is there a way to provide this. The linerule options says it only works in text mode.
Thank You
binary transfer and linerule
Some linerules work with binary data, and some do not.
Consider that if your linerule was "lf" or "crlf" that there might be those characters also in the binary data, which would cause trouble.
But, linerule=rdw can be used with mode=binary just fine.
Also, if you have fixed-length records, you can simply use mode=binary with linerule=none (the default).
Consider that if your linerule was "lf" or "crlf" that there might be those characters also in the binary data, which would cause trouble.
But, linerule=rdw can be used with mode=binary just fine.
Also, if you have fixed-length records, you can simply use mode=binary with linerule=none (the default).