Tagged Questions
DCL is the language for command lines and batch files of RSX and VMS operating systems; it stands for Digital Command Language (*Digital* was a computer and software vendor 1958-1998).
2
votes
4answers
192 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
189 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
205 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?