Use this JCL to list the line and the member name which has the characters ' JOB ' and 'NOTIFY'.
//FASTEP EXEC PGM=FILEAID,REGION=6M
//STEPLIB DD DISP=SHR,DSN=SYS3.FILEAID.LOAD
//SYSPRINT DD SYSOUT=*
//SYSLIST DD SYSOUT=*
//DD01 DD DISP=SHR,DSN=YOUR.PDS.NAME
//SYSIN DD *
$$DD01 DUMP IF=(01,0,C' JOB '),
AND=(01,0,C'NOTIFY')
/*
Use this SYSIN if you want all the lines of the member and the name which has the characters ' JOB ' or 'NOTIFY'.
$$DD01 LISTMEM F=JCL,IF=(1,0,C' JOB '),IF=(1,0,C'NOTIFY')
Arun.