Ignore:
Timestamp:
05/20/15 17:47:20 (9 years ago)
Author:
labetoulle
Message:

plot_store.py : plot initial volume in addition to current volume.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TOOLS/ConsoGENCMIP6/launch_conso.sh

    r2460 r2524  
    7878printf "\n${script}\n" 
    7979echo "--------------------" 
     80# Last STORE file produced 
     81data_file="OUT_CONSO_STORE" 
     82OUTDIR="${HOME}/ConsoGENCMIP6/output" 
     83# Directories in last file 
     84dirlist=$( gawk '{if ($4 != "dirname") print $4}' ${OUTDIR}/${data_file} ) 
     85# Where to find the saved files 
     86SAVEDIR="${WORKDIR}/ConsoGENCMIP6/data" 
     87# Previous STORE files 
     88filelist=$( ls ${SAVEDIR}/${data_file}_* ) 
     89fileout="${data_file}_INIT" 
     90echo "date       login      dirsize dirname" > ${OUTDIR}/${fileout} 
     91for dir in ${dirlist} ; do 
     92  grep -h "$dir\$" ${filelist} | head -1 
     93  grep -h "$dir\$" ${filelist} | head -1 >> ${OUTDIR}/${fileout} 
     94done 
     95 
    8096bin/${script}.py -v 
    8197rc=$? 
Note: See TracChangeset for help on using the changeset viewer.