Need help with reading XML file

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

That, or try escaping the backslashes.

Code: Select all

DIR /B C:\\XML\\TEST.xml
But, with UNIX commands, you will still have the problem that drive letter is not recognized. MKS Toolkit regards the current drive as "the filesystem" and its root as the filesystem root. So you should probably (a) make sure that C: drive is current, and (b) use ls /XML/TEST.xml (note, too, that directory and file names in UNIX are case-sensitive).
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
collabxchange
Premium Member
Premium Member
Posts: 34
Joined: Thu Aug 28, 2014 8:48 pm
Location: United States

Post by collabxchange »

Finally, I was able to get it done with directions from the below link! Thank you everyone for your help and guidance.

https://www.youtube.com/watch?v=PLJGVSPtBHA
Post Reply