Release: PDSMAN PDS Library Management 7.7
The PDSMAN program EZYEDIT can produce this information. It can be run in batch or can be used online.
Batch example below:
//*
//BATEE EXEC PGM=PDSEASY
//EZYPRINT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//*
//SYSIN DD *
ERROR NOFLUSH
* start a dataset list
DSL SYS1.LINKLIB
* include another dataset
I SYS1.PARMLIB
* include more datasets
I SYS2.*
* report dataset information for each dataset in list
HC MAX
END
//*