try this in mvs rexx
/*rexx*/
say '/'
as you would expect you get a '/' displayed on screen.
now try
/*rexx*/
say '\'
note backslash not forward slash, it converts it to ':'
this is a problem for me since im trying to NDM files from mainframe to NT shared drives using connect direct, and the pathnames required by the JCL contain lots of '\' - forward slash (/) wont work, ndm rejects them.
Anybody got any ideas?
/*rexx*/
say '/'
as you would expect you get a '/' displayed on screen.
now try
/*rexx*/
say '\'
note backslash not forward slash, it converts it to ':'
this is a problem for me since im trying to NDM files from mainframe to NT shared drives using connect direct, and the pathnames required by the JCL contain lots of '\' - forward slash (/) wont work, ndm rejects them.
Anybody got any ideas?