Changeset 120 for trunk


Ignore:
Timestamp:
05/05/09 14:22:32 (15 years ago)
Author:
mmaipsl
Message:

Change main loop syntaxe to be abble to change PeriodNb? with libIGCM.card

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/AA_job

    r92 r120  
    245245 
    246246Period=1 
    247 while [ ${Period} -le ${PeriodNb} ]; do 
     247 
     248PeriodContinue=false 
     249if [ ${Period} -le ${PeriodNb} ]; then 
     250    PeriodContinue=true 
     251fi 
     252while ( ${PeriodContinue} ) ; do 
    248253 
    249254    echo 
     
    425430    fi 
    426431 
     432    PeriodContinue=false 
     433    if [ ${Period} -le ${PeriodNb} ]; then 
     434        PeriodContinue=true 
     435    fi 
    427436done  
    428437 
Note: See TracChangeset for help on using the changeset viewer.