/[MITgcm]/mitgcm.org/scripts/process_emails
ViewVC logotype

Diff of /mitgcm.org/scripts/process_emails

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.4 by jmc, Fri Feb 29 01:51:27 2008 UTC revision 1.5 by jmc, Wed Mar 5 00:56:11 2008 UTC
# Line 17  if test ! -x $unpck ; then Line 17  if test ! -x $unpck ; then
17   ./configure && make   ./configure && make
18  fi  fi
19    
20    #-- create a daily log file (if not already there)
21    cd /u/u2/jmc/testing/logs
22    logpfx="prc_emails_" ; sfx=`date +%m%d`
23    logfile="../logs/${logpfx}$sfx"
24    if test -e $logfile ; then :
25    else
26    #-- clean-up old log files:
27      echo -n '-- in dir: ' ; pwd
28      n=$(( `ls ${logpfx}* | wc -l` - 10 ))
29      if test $n -gt 0 ; then
30      echo -n ' remove files: '
31        ls -lt ${logpfx}* | tail -"$n"
32        ls -t  ${logpfx}* | tail -"$n" | xargs rm -f
33      fi
34      echo ' create new log file:' $logfile
35      touch $logfile
36    fi
37    
38  #-- parse emails :  #-- parse emails :
39  cd /u/u2/jmc/testing/front_content && ./parse_emails -u $unpck -v -a jmc@ocean.mit.edu  cd /u/u2/jmc/testing/front_content && ./parse_emails -u $unpck -v -a jmc@ocean.mit.edu >> $logfile 2>&1
40    

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

  ViewVC Help
Powered by ViewVC 1.1.22