Ignore:
Timestamp:
12/13/10 16:34:12 (14 years ago)
Author:
sdipsl
Message:
  • Cesium changes his behaviour this week end. Usually only environment variable poitned by list_var_env are passed to a child job. Suddenly cesium passes all environement variables to the child jobs. Add a workaround.
  • Upgrade IGCM_Patch_20101208_nudge_interp.ksh (jg)
  • Cosmetics
  • tag v1_10 will be updated as well
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/libIGCM/AA_TimeSeries_Checker

    r396 r401  
    6060echo "This action can potentially submit numbers of jobs (up to 50)" 
    6161echo "This action can potentially remove unnecessary files but I will ALWAYS ask permission to do so" 
    62 echo "\033[1;31mDo you want me to run in dryrun mode just telling what I would submit?\033[m" 
    63 echo "\033[1;31mOr do you want me to submit job for real? Answer yes in this case.\033[m" 
     62echo -e "\033[1;31mDo you want me to run in dryrun mode just telling what I would submit?\033[m" 
     63echo -e "\033[1;31mOr do you want me to submit job for real? Answer yes in this case.\033[m" 
    6464echo -n " Run for real (y/n) :" 
    6565read ActionAnswer 
     
    339339                                IGCM_debug_Print 2 "File(s) that will be removed ${RemoveList[*]}" 
    340340                                if [ ${action} = true ] ; then 
    341                                     echo "\033[1;32mDo you want to remove them?" 
     341                                    echo -e "\033[1;32mDo you want to remove them?" 
    342342                                    echo -n " Your answer (y/n) : \033[m" 
    343343                                    read RemoveAnswer 
     
    345345                                        oui|OUI|o|y|yes|YES) 
    346346                                            echo "OK. I will erase them" 
    347                                             IGCM_sys_Rm ${RemoveList[*]} 
     347                                            IGCM_sys_Rm -f ${RemoveList[*]} 
    348348                                            ;; 
    349349                                        non|NON|n|no|NO) 
     
    411411                                    echo 
    412412                                else 
    413                                     IGCM_debug_Print 2 "\033[1;31mI should NOW submit ${FILE} chunck ${Dimension}\033[m period ${ChunckDebut}-${ChunckFin} and CompletedFlag=${ChunckCompletedFlag}" 
     413                                    IGCM_debug_Print 2 -e "\033[1;31mI should NOW submit ${FILE} chunck ${Dimension}\033[m period ${ChunckDebut}-${ChunckFin} and CompletedFlag=${ChunckCompletedFlag}" 
    414414                                fi 
    415415                            fi 
     
    450450IGCM_date_GetYearMonth ${DateBegin} YearBegin MonthBegin 
    451451CompletedFlag=${SavedCompletedFlag} 
     452 
     453unset CompToRead 
     454unset FlagToRead 
     455unset NameToRead 
    452456 
    453457if [ X${Launch2D} = Xtrue ] ; then 
     
    470474        echo 
    471475    else 
    472         IGCM_debug_Print 2 "\033[1;31mI should NOW submit 2D without chunck\033[m period ${DateBegin}-${DateEnd}" 
     476        IGCM_debug_Print 2 -e "\033[1;31mI should NOW submit 2D without chunck\033[m period ${DateBegin}-${DateEnd}" 
    473477    fi 
    474478fi 
Note: See TracChangeset for help on using the changeset viewer.