//TSFREAD  JOB <job parameters>                                              
//****************************************************************           
//*    Licensed Materials - Property of TeraCloud Corporation    *           
//*    (C) Copyright TeraCloud Corporation 2007                  *           
//*                                                              *           
//*  This JCL will get the README file from the TeraCloud        *           
//*  FTP server.                                                 *           
//*                                                              *           
//*  CAUTION: This is neither a JCL procedure nor a complete     *           
//*  job.  Before using this job step, you will have to          *           
//*  make the following modifications:                           *           
//*                                                              *           
//*  1) Add the job parameters to meet your system requirements  *           
//*                                                              *           
//*  2) Change ftpserver to the ftp server domain name           *           
//*     provided by TeraCloud Corporation Technical Support      *           
//*                                                              *           
//*  3) Change ftpuserid to the ftp userid provided by TeraCloud *           
//*     Corporation Technical Support.                           *           
//*                                                              *           
//*  4) Change ftppassword to the ftp password provided by       *           
//*     TeraCloud Corporation Technical Support.                 *           
//*                                                              *           
//*  5) Change ftppath to a UNIX system services path appropriate*           
//*     to hold the README file, which is a sample job that      *           
//*     allocates and loads the TSF installation jobs.           *           
//*                                                              *           
//*  Note: You can use OEDIT to edit and submit the job in the   *           
//*  README file stored in ftppath.                              *           
//*                                                              *           
//*  Maintenance:                                                *           
//*                                                              *           
//*  Set return code 8 if FTP fails                       TS00434*           
//*                                                              *           
//****************************************************************           
//*                                                                          
//FTP     EXEC PGM=FTP,                                                      
//             COND=(0,NE),                                                  
//             REGION=4M                                                     
//INPUT    DD  *                                                             
ftpserver (exit=08                                                           
ftpuserid                                                                    
ftppassword                                                                  
cd /ATSF211                                                                  
binary                                                                       
get S0003.SEND.ATSF211.README ftppath (replace                               
quit                                                                         
//OUTPUT   DD  SYSOUT=*                                                      