/* This program pipes in the sas cport file and creates a sas dataset in the format appropriate to the host operating system. The new file will be written to the directory specified in newdata and the size will be 100 MB. Jean Roth August 22, 2000 */ options compress = yes; libname newdata '/home/data/surgcerts/'; filename olddata pipe 'gzcat /home/data/surgcerts/dis.cport.Z'; proc cimport data=newdata.dis infile=olddata;