#!/bin/tcsh #------------------------------------------------------------- #The above line indicates that the following code is a #TC-Shell-instruction. The Variable LD_LIBRARY_PATH #must be set in the Environmet of the System where the #Rexx-Scripts are executed. #------------------------------------------------------------- setenv LD_LIBRARY_PATH /net/swt/u/students/tjungman/rmysql/lib #------------------------------------------------------------- #The above line indicates where the Rexx-Libraries are stored. #This may be different at your site. #------------------------------------------------------------- /usr/bin/rexx diary.rxx #------------------------------------------------------------- #The above line executes the Rexx-Script "diary.rxx" with #the REXX interpreter"/usr/bin/rexx". #This may be different at your site. #-------------------------------------------------------------