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

Contents of /mitgcm.org/scripts/process_emails

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


Revision 1.8 - (show annotations) (download)
Mon Jan 8 14:17:59 2018 UTC (7 years ago) by jmc
Branch: MAIN
Changes since 1.7: +2 -1 lines
report when log file is created

1 #! /usr/bin/env bash
2
3 # $Header: /u/gcmpack/mitgcm.org/scripts/process_emails,v 1.7 2018/01/05 20:08:54 jmc Exp $
4
5 #cat <<EOF
6 #==========================================================
7 #Parsing MITgcm testing emails :
8 #==========================================================
9 #
10 #EOF
11
12 #-- build munpack if needed:
13 unpck=/u/u2/jmc/testing/tools_mpack/munpack
14 if test ! -x $unpck ; then
15 MPACKDIR=`dirname $unpck`
16 cd $MPACKDIR
17 ./configure && make
18 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 echo "Log file created from '"`hostname`"' by '$USER' on:" `date` >> $logfile
37 chmod 664 $logfile
38 fi
39
40 #-- parse emails :
41 cd /u/u2/jmc/testing/front_content && ./parse_emails -u $unpck -a jmc@ocean.mit.edu >> $logfile 2>&1

  ViewVC Help
Powered by ViewVC 1.1.22