#!/bin/sh intera1=1 intera2=5 intraa1=5 intraa2=6 report=adf.report echo "We compare for two weakly coupled systems an inter and intra bond length" > $report echo "using several methods" >> $report echo "" >> $report echo "method d-inter d-intra" >> $report bas=TZP system=AmmoniaN2 export AMS_JOBNAME=$system.lda rm -rf $AMS_JOBNAME.results $AMSBIN/ams<> $report export AMS_JOBNAME=$system.gga rm -rf $AMS_JOBNAME.results $AMSBIN/ams<> $report export AMS_JOBNAME=$system.hybrid rm -rf $AMS_JOBNAME.results $AMSBIN/ams<> $report echo "start of report" cat $report echo "end of report"