Tagged Questions

2
votes
4answers
217 views

DCL syntax problem in OpenVms

I am really confused by some syntax in the dcl of openvms. For example, these are some lines which confused me: $ wo = "write sys$output" Does it create a symbol wo for write sys$output? $ ...
1
vote
2answers
198 views

How to assign the output of a program to a variable in a DCL com script on VMS?

For example, I have a perl script p.pl that writes "5" to stdout. I'd like to assign that output to a variable like so: $ x = perl p.pl ! not working code $ ! now x would be 5
1
vote
4answers
214 views

files opened by a process on VMS

I have a DCL script on VMS which calls a perl script. Is there a VMS/DCL command I can use that will tell me every file handle opened by the perl script?