You've got SAS; use IEBUPDTE to create a sequential file,
and then add the two extra lines with this SAS program,
then rebuild the new PDS with IEBUPDTE:

DATA;
INFILE IEBUPDTE END=END; 
INPUT CARD $80.;
IF ( CARD=:'./' and _N_ GT 1 ) OR END THEN DO;
 FILE NEW;
  PUT 'line 1 text ';
  PUT 'line 2 text ';
 FILE LOG;
END;
FILE NEW;
PUT CARD $80.;


Barry Merrill

Herbert W. Barry Merrill, PhD
President-Programmer
Merrill Consultants
MXG Software
10717 Cromwell Drive
Dallas TX 75229
214 351 1966 tel
214 350 3695 fax
www.mxg.com

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to