I probably did not make my question clear. LISTCAT LEVEL only allows you to specify up to a complete node but doesnt allow for wildcard characters like '*' . Am I right? I have datasets like this
NODE1.NODE2.NODE3.VSA32441 . If I specify LISTCAT LEVEL ("NODE1.NODE2.NODE3") , it returns a very...
Here is a sample code to list out members from a PDS that match your criteria
/*rexx*/
dsn = "MY.PDS"
DUMMY =OUTTRAP("MEMB.","*")
"LISTDS '"dsn"' MEMBERS"
do i = 1 to memb.0
if SUBSTR(strip(memb.i),1,3) = 'LIS' then
say "memeber :" memb.i
end
Hope this helps
How can I use a wildcard to get a subset of the dataset listing? The dataset naming is such that they differ only a few characters in the last node and I dont want to loop thru 10000 datasets to find a few.
I have an assembler pgm (load module) that takes an input record which is in binary and translates it into a character based record. The binary record is 64 bytes and the translated record is about 900 bytes. I am trying to call this assembler program from my REXX program but I dont know how to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.