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

Contents of /mitgcm.org/scripts/check_outp

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


Revision 1.35 - (show annotations) (download)
Sun Feb 24 15:29:05 2013 UTC (12 years, 4 months ago) by jmc
Branch: MAIN
Changes since 1.34: +3 -4 lines
update current list of tested platforms

1 #! /usr/bin/env bash
2
3 # $Header: /u/gcmpack/mitgcm.org/scripts/check_outp,v 1.34 2012/09/08 14:25:13 jmc Exp $
4 #
5 # The purpose of this script is to compare
6 # the latest output with the previous one (from the same platform with
7 # same optfile)
8
9 usage()
10 {
11 echo
12 echo "Usage: $0 [OPTIONS]"
13 echo
14 echo "where possible OPTIONS are:"
15 echo " (-h|-help) print usage"
16 echo " (-v|-verbose) verbose mode"
17 echo " (-l |-list )MACHINES check platforms from this list"
18 echo " [def=\"$MACHINES\"]"
19 echo " (-d |-day )FIRSTDAY select output from day=\"YYYYMMDD\""
20 echo " (argument of \"date -d\" is allowed)"
21 echo " [def=\"$FIRSTDAY\"]"
22 echo " (-u |-upto )LASTDAY until last day=\"YYYYMMDD\" (=selected period)"
23 echo " [def=\"FIRSTDAY\"]"
24 echo " (-b |-before)BEFORE compare with output from before \"YYYYMMDD\""
25 echo " (=previous period) [def=\"FIRSTDAY\"]"
26 echo " (-o |-outp )OUTPFIL output file (-1 removed when exit)"
27 echo " [def=\"$OUTPFIL\"]"
28 echo " (-n |-nldf )NBLDIFF max number of diff lines to echo"
29 echo " [def=\"$NBLDIFF\"]"
30 echo " (-a |-addr )ADDRESS send summary to mail ADDRESS list"
31 echo " [def=\"$ADDRESS\"]"
32 echo
33 exit 1
34 }
35
36 # create list of results dir for one platform:
37 make_resdir_list()
38 {
39 if test $monthDir == 1 ; then
40 dir_list=`grep '.._'$mname ./dir_all`
41 else
42 dir_list=`( cd $INDIR ; ls -1 -t ../$PREV_P/??_*${mname}*/summary.txt 2> /dev/null | sed 's/\/summary.txt//' )`
43 #echo "dir_list='$dir_list'"
44 fi
45 for i in $dir_list ; do
46
47 dir=$INDIR"/"$i
48 #--- get the opfile used to run testreport
49 OPTFILE=
50 if test -r $dir/summary.txt ; then
51 comm=`grep 'OPTFILE=' $dir/summary.txt`
52 eval $comm
53 fi
54 if test "x$OPTFILE" = x -a -r "$dir/genmake_state" ; then
55 comm=`grep 'OPTFILE=' $dir/genmake_state 2>/dev/null`
56 eval $comm
57 fi
58 if test "x$OPTFILE" = x ; then
59 comm=`grep '^# OPTFILE=' $dir/*/Makefile* 2>/dev/null | head -1`
60 comm=${comm##*#}
61 eval $comm
62 fi
63 if test "x$OPTFILE" = x ; then
64 OPTFILE="not_explicitly_specified"
65 else
66 OPTFILE=${OPTFILE##*/}
67 fi
68 #--- case select test run by 1 user: get user who did run testreport
69 if test "x$sUser" != x ; then
70 tUser=
71 if test -f $dir/genmake_state ; then
72 nn=`sed -n '/^# executed by:/=' $dir/genmake_state`
73 if test "x$nn" != x ; then
74 nn=`expr $nn + 1`
75 tUser=`sed -n "$nn s/^# *// p" $dir/genmake_state | sed 's/@.*$//'`
76 fi
77 fi
78 if test "x$tUser" = "x" ; then
79 mkfile=`ls $dir/*/Makefile* 2>/dev/null | head -1`
80 if test "x$mkfile" = 'x' ; then
81 echo "no Makefile => discard test from: $i" | tee -a $OUTPFIL
82 continue
83 fi
84 nn=`sed -n '/^# executed by:/=' $mkfile`
85 if test "x$nn" != x ; then
86 nn=`expr $nn + 1`
87 tUser=`sed -n "$nn s/^# *// p" $mkfile | sed 's/@.*$//'`
88 fi
89 fi
90 if test "x$tUser" = x ; then
91 echo "no User found => discard test from: $i" | tee -a $OUTPFIL
92 continue
93 fi
94 if test $tUser != $sUser ; then
95 if test $dBug = 't' ; then
96 echo " discard test from: $i" | tee -a $OUTPFIL
97 fi
98 continue
99 fi
100 fi
101
102 ADJOINT=
103 TANGLIN=
104 RESTART=0
105 EXTRA=
106 FAST=0
107 DVLP=0
108 MPI=0
109 MTH=0
110 UR4=0
111 if test -r $dir/summary.txt ; then
112 comm=`grep 'ADJOINT=true' $dir/summary.txt 2>/dev/null`
113 eval $comm
114 comm=`grep 'TANGLIN=true' $dir/summary.txt 2>/dev/null`
115 eval $comm
116 RESTART=`grep -c 'test 2+2=4 summary' $dir/summary.txt`
117 comm=`grep '^run: .*testreport.* ' $dir/summary.txt`
118 EXTRA=`echo "$comm" | grep " -*-tdir\>" | sed -e "s/^.* -*-tdir\>//" -e "s/ -.*$//"`
119 if test "x$EXTRA" = x ; then
120 EXTRA=`echo "$comm" | grep " -*-t\>" | sed -e "s/^.*-*-t\>//" -e "s/ -.*$//"`
121 fi
122 if test "x$EXTRA" = x ; then EXTRA=0 ; else
123 #echo -n "EXTRA=$EXTRA"
124 nn0=`echo $EXTRA | sed "s/ *' *//g" | wc -w`
125 nn1=`echo $EXTRA | sed "s/ *' *//g" | tr ' ' '\n' | grep -c "\<monod_"`
126 nn2=`echo $EXTRA | sed "s/ *' *//g" | tr ' ' '\n' | grep -c "\<darwin_"`
127 EXTRA=1
128 if [ $nn1 -ge 2 ] ; then EXTRA=2 ; fi
129 if [ $nn2 -ge 2 ] ; then EXTRA=3 ; fi
130 #echo " : nn0=$nn0 ; nn1=$nn1 ; nn2=$nn2"
131 fi
132 FAST=`echo "$comm" | grep -c " -*-fast\>"`
133 if test "x$FAST" = x0 ; then
134 FAST=`echo "$comm" | grep -c " '*-noieee'*"`
135 fi
136 DVLP=`echo "$comm" | grep -c " -*-devel\>"`
137 MPI=`echo "$comm" | grep -c " -*-mpi\>"`
138 if test "x$MPI" = x0 ; then
139 MPI=`echo "$comm" | grep -c " -*-MPI\>"`
140 fi
141 MTH=`echo "$comm" | grep -c " -*-mth\>"`
142 UR4=`echo "$comm" | grep -c " -*-use_r4\>"`
143 if test "x$UR4" = x0 ; then
144 UR4=`echo "$comm" | grep -c " -*-ur4\>"`
145 fi
146 fi
147 if test "x$ADJOINT" = xtrue ; then
148 kind="adjoint" ; order=0
149 elif test "x$TANGLIN" = xtrue ; then
150 kind="tanglin" ; order=1
151 elif test "x$RESTART" = x0 ; then
152 kind="forward" ; order=2
153 else
154 kind="restart" ; order=3
155 fi
156 order=`expr $order + 10 \* $EXTRA`
157 order=`printf '%3.3i' $order`
158 if test "x$UR4" = x1 ; then
159 OPTFILE="${OPTFILE}.use_r4"
160 fi
161 if test "x$MPI" = x1 ; then
162 yy=`echo $OPTFILE | grep -c '+mpi'`
163 if test $yy = 0 ; then OPTFILE="${OPTFILE}+mpi" ; fi
164 fi
165 if test "x$MTH" = x1 ; then
166 yy=`echo $OPTFILE | grep -c '+mth$'`
167 if test $yy = 0 ; then OPTFILE="${OPTFILE}+mth" ; fi
168 fi
169 if test "x$FAST" = x1 ; then
170 OPTFILE="${OPTFILE}.fast"
171 fi
172 if test "x$DVLP" = x1 ; then
173 OPTFILE="${OPTFILE}.dvlp"
174 fi
175 day=`echo $i | sed -e 's/_[0-9]$//' | sed -e 's/_[0-9][0-9]$//'`
176 ttt=`echo $day | sed -e 's/_[0-9]$//' | sed -e 's/_[0-9][0-9]$//'`
177 day=`echo $ttt | sed -e 's|_| |g' |awk '{print $NF}'`
178
179 if [ $day -lt $BEFORE ] ; then
180 echo "$OPTFILE$order $day $OPTFILE $kind $i" >> ./plist
181 elif [ $day -ge $FIRSTDAY -a $day -le $LASTDAY ] ; then
182 echo "$OPTFILE$order $day $OPTFILE $kind $i" >> ./slist
183 else
184 if test $dBug = 't' ; then
185 echo "discard day='$day' from: $i" | tee -a $OUTPFIL
186 fi
187 fi
188
189 done
190 if test $dBug = 't' ; then
191 if test $monthDir == 1 ; then
192 echo "---- current list (n=$monthDir) :" | tee -a $OUTPFIL
193 cat ./slist | tee -a $OUTPFIL
194 fi
195 num1=`wc -l ./slist | awk '{print $1}'`
196 if test $num1 -gt 0 ; then
197 echo ".... previous list (n=$monthDir):" | tee -a $OUTPFIL
198 cat ./plist | tee -a $OUTPFIL | head -20
199 fi
200 echo "----" | tee -a $OUTPFIL
201 fi
202 }
203
204 #--------------------------------------------------------------------------
205 # here starts the sequential part of the script:
206
207 #CURR_PER=`date +%Y`"_"`date +%m`
208 CURR_DAY=`date +%Y%m%d`
209 # defaults
210 MACHINES='_All_'
211 FIRSTDAY=$CURR_DAY
212 LASTDAY="30000000"
213 BEFORE="30000000"
214 OUTPFIL=`basename $0`'.log'
215 NBLDIFF=5
216 ADDRESS='none'
217 dBug=f
218 sTime=`date`
219 #- to get case insensitive "ls" (and order of tested experiments)
220 export LC_ALL="en_US.UTF-8"
221
222 # Parse options
223 ac_prev=
224 for ac_option ; do
225
226 # If the previous option needs an argument, assign it.
227 if test -n "$ac_prev"; then
228 eval "$ac_prev=\$ac_option"
229 ac_prev=
230 continue
231 fi
232
233 ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
234
235 case $ac_option in
236
237 -help | --help | -h | --h) usage ;;
238 -verbose | --verbose | -v | --v) dBug=t ;;
239
240 -list | --list | -l | --l) ac_prev=MACHINES ;;
241 -list=* | --list=*) MACHINES=$ac_optarg ;;
242
243 -day | --day | -d | --d) ac_prev=FIRSTDAY ;;
244 -day=* | --day=*) FIRSTDAY=$ac_optarg ;;
245
246 -upto | --upto | -u | --u) ac_prev=LASTDAY ;;
247 -upto=* | --upto=*) LASTDAY=$ac_optarg ;;
248
249 -before | --before | -b | --b) ac_prev=BEFORE ;;
250 -before=* | --before=*) BEFORE=$ac_optarg ;;
251
252 -outp | --outp | -o | --o) ac_prev=OUTPFIL ;;
253 -outp=* | --outp=*) OUTPFIL=$ac_optarg ;;
254
255 -nldf | --nldf | -n | --n) ac_prev=NBLDIFF ;;
256 -nldf=* | --nldf=*) NBLDIFF=$ac_optarg ;;
257
258 -addr | --addr | -a | --a) ac_prev=ADDRESS ;;
259 -addr=* | --addr=*) ADDRESS=$ac_optarg ;;
260
261 *) echo "Error: don't understand argument \"$ac_option\""
262 usage ;;
263
264 esac
265
266 done
267 #-- test FIRSTDAY content ; interpret as "date -d" arg. if not YYYYMMDD
268 ttt=`echo "y$FIRSTDAY" | sed 's/[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/z/'`
269 if test "x$ttt" != 'xyz' ; then
270 FIRSTDAY=`date -d "$FIRSTDAY" +%Y%m%d`
271 fi
272 ttt=`echo "y$FIRSTDAY" | sed 's/[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/z/'`
273 if test "x$ttt" != 'xyz' ; then
274 echo "Error: FIRSTDAY='$FIRSDAY' not recognized"
275 exit 2
276 fi
277 if test $LASTDAY = "30000000" ; then LASTDAY=$FIRSTDAY ; fi
278 if test $BEFORE = "30000000" ; then BEFORE=$FIRSTDAY ; fi
279 CMDLINE=$0
280 for xx in "$@" ; do nw=`echo $xx | wc -w`
281 if test $nw = '1' ; then CMDLINE="$CMDLINE $xx"
282 else CMDLINE="$CMDLINE '$xx'" ; fi
283 done
284
285 PERIOD=`echo $LASTDAY | sed 's/[0-9][0-9]$//'`
286 PP=`expr $PERIOD - 1`
287 PM=`echo $PP | sed 's/^[0-9][0-9][0-9][0-9]//'`
288 PY=`echo $PP | sed 's/[0-9][0-9]$//'`
289 if test $PM == '00' ; then PM='12' ; PY=`expr $PY - 1` ; fi
290 PREV_P="${PY}_${PM}";
291 PERIOD=`echo $PERIOD | sed 's/^[0-9][0-9][0-9][0-9]/&_/'`
292
293 #INDIR="/net/orwell/export/export-9/mitgcm-testing/results/$PERIOD"
294 INDIR="/u/u0/httpd/html/testing/results/$PERIOD"
295 #INDIR="/export/export-7/u/u2/jmc/mitgcm/test_web/results/$PERIOD"
296
297 if test $OUTPFIL = '-1' ; then
298 OUTPFIL='TTT.'$$
299 elif test -e $OUTPFIL ; then
300 mv -f $OUTPFIL $OUTPFIL'_bak'
301 fi
302 echo "CMDLINE='$CMDLINE'" > $OUTPFIL
303 echo "PERIOD='$PERIOD' , PREV_P='$PREV_P'" >> $OUTPFIL
304 echo "INDIR='$INDIR'" >> $OUTPFIL
305 echo "Checking latest output from $FIRSTDAY until $LASTDAY" >> $OUTPFIL
306 echo " versus latest from before $BEFORE" >> $OUTPFIL
307
308 if test $dBug = 't' ; then
309 echo "PERIOD='$PERIOD' , PREV_P='$PREV_P'"
310 echo "FIRSTDAY='$FIRSTDAY' , LASTDAY='$LASTDAY' , BEFORE='$BEFORE'"
311 fi
312 if test -d $INDIR ; then
313 dirP=`echo $INDIR | sed "s/$PERIOD/$PREV_P/"`
314 if test -d $dirP ; then
315 listNum='1 2'
316 else
317 echo "$dirP is not a directory"
318 listNum='1'
319 fi
320 else
321 echo "$INDIR is not a directory"
322 exit 3
323 fi
324
325 #- a short summary of this checking :
326 OUTPSUM=`echo $LASTDAY | sed 's/^20../_/'`
327 OUTPSUM=`basename $0`"$OUTPSUM.txt"
328 if test -e $OUTPSUM ; then mv -f $OUTPSUM $OUTPSUM'_bak' ; fi
329 echo ' '$CMDLINE > $OUTPSUM
330
331 if test $FIRSTDAY = $LASTDAY ; then
332 echo -n "Checking latest output from $FIRSTDAY" | tee -a $OUTPSUM
333 else
334 echo -n "Checking latest output from $FIRSTDAY until $LASTDAY" | tee -a $OUTPSUM
335 fi
336 if test $FIRSTDAY = $BEFORE ; then
337 echo " versus latest prior to this period" | tee -a $OUTPSUM
338 else
339 echo " versus latest from before $BEFORE" | tee -a $OUTPSUM
340 fi
341 echo " Machine Tot. Nb. no Nb with Nb diff" >> $OUTPSUM
342 echo " name checked comp Diff lines" >> $OUTPSUM
343
344 ( cd $INDIR ; ls -1 -t */summary.txt | sed 's/\/summary.txt//' ) > ./dir_all
345
346 if test "x$MACHINES" = "x_All_" ; then
347 MACHINES="aces- acesgrid baudelaire dickens danton beagle"
348 MACHINES="$MACHINES pleiades iblade sx8 uv100 solasrv stomp weber"
349
350 MALL=`cat ./dir_all | sed -e 's|_| |g' | awk '{print $2}' | sort | uniq`
351 for madd in $MALL ; do
352 present=0
353 for m in $MACHINES ; do
354 mm=`echo $m | sed 's/\./ /g' | awk '{print $1}'`
355 echo $madd | grep $mm > /dev/null 2>&1
356 RETVAL=$?
357 test $RETVAL = 0 && present=1
358 continue
359 done
360 test $present = 0 && MACHINES="$MACHINES $madd"
361 done
362 fi
363 #echo "MACHINES=$MACHINES" ; exit
364
365 for pname in $MACHINES ; do
366
367 sname=`echo $pname | sed 's/-$//'`
368 mname=`echo $pname | sed 's/\./ /g' | awk '{print $1}'`
369 sUser=
370 if test $mname != $pname ; then
371 # to select results from user "sUser"
372 sUser=`echo $pname | sed 's/\./ /g' | awk '{print $2}'`
373 fi
374
375 if test $dBug = 't' ; then echo " $pname" ; fi
376 echo " name='$pname'" >> $OUTPFIL
377 ctot=0 ; cmis=0 ; cdif=0
378
379 # put results from selected period in "slist",
380 # results from previous period in "plist"
381 rm -f ./plist ./slist ; touch ./plist ./slist
382
383 #- create list of results (slist & plist) from current month directory
384 monthDir=1
385 make_resdir_list
386
387 # Do we have any data? If so, create the latest pointer.
388 num=`wc -l ./slist | awk '{print $1}'`
389 if test $num -gt 0 ; then
390
391 keys=`cat ./slist | cut -d " " -f 1 | sort | uniq`
392
393 for key in $keys ; do
394 ctot=`expr $ctot + 1`
395 sline=`grep "^$key " ./slist | head -1`
396 sdir=`echo $sline | cut -d " " -f 5`
397 type=`echo $sline | cut -d " " -f 4`
398 optf=`echo $sline | cut -d " " -f 3`
399 num=`grep -c "^$key" ./plist`
400 if test $num = 0 -a $monthDir = 1 ; then
401 #- add results from previous month directory to "plist".
402 monthDir=2
403 make_resdir_list
404 num=`grep -c "^$key" ./plist`
405 fi
406 #- discard unsafe test:
407 dd=`echo $optf | grep -c 'gfortran+mth'`
408 if test $mname = 'lagoon' -a $dd = 1 ; then num=-1 ; fi
409 if test $mname = 'harbor' -a $dd = 1 ; then num=-1 ; fi
410 #if test $mname = 'aces' -a $optf = 'linux_ia32_open64' ; then num=-1 ; fi
411 #if test $mname = 'aces' -a $optf = 'linux_ia32_g95' ; then num=-1 ; fi
412 dd=`echo $optf | grep -c 'bigred.*noieee'`
413 #if test $mname = 'bigred' -a $dd = 1 ; then num=-1 ; fi
414 if test $num -lt 0 ; then
415 echo " discard $sdir : $type , of='$optf'" | tee -a $OUTPFIL
416 cmis=`expr $cmis + 1`
417 elif test $num = '0' ; then
418 echo "no previous test for:" $key | tee -a $OUTPFIL
419 cmis=`expr $cmis + 1`
420 else
421 pline=`grep "^$key " ./plist | head -1`
422 if test $dBug = 't' ; then
423 echo "s='$sline'" | tee -a $OUTPFIL
424 echo "p='$pline'" | tee -a $OUTPFIL
425 fi
426 pdir=`echo $pline | cut -d " " -f 5`
427 outs="$INDIR/$sdir/summary.txt"
428 xx=`( echo 5 ; sed -n '/^ OPTFILE=/=' $outs ) | tail -1`
429 sed "1,$xx d" $outs | sed '/^[YN] [YN] [YN] [YN]/ s/ \. //g' \
430 | grep -v '^[A-S][a-t]* time: ' > tmpfs
431 outp="$INDIR/$pdir/summary.txt"
432 xx=`( echo 5 ; sed -n '/^ OPTFILE=/=' $outp ) | tail -1`
433 sed "1,$xx d" $outp | sed '/^[YN] [YN] [YN] [YN]/ s/ \. //g' \
434 | grep -v '^[A-S][a-t]* time: ' > tmpfp
435 #-- re-order list of exp (according to local "sort" order)
436 listD=`grep '^[YN] [YN] [YN] [YN]' tmpfs | awk '{print $NF}' | sort`
437 for xx in $listD
438 do
439 sed "/ $xx\$/d" tmpfs > tmpfn
440 sed -n "/ $xx\$/p" tmpfs >> tmpfn
441 mv tmpfn tmpfs
442 done
443 listD=`grep '^[YN] [YN] [YN] [YN]' tmpfp | awk '{print $NF}' | sort`
444 for xx in $listD
445 do
446 sed "/ $xx\$/d" tmpfp > tmpfn
447 sed -n "/ $xx\$/p" tmpfp >> tmpfn
448 mv tmpfn tmpfp
449 done
450 echo -n "=== diff $sdir $pdir :" | tee -a $OUTPFIL
451 diff tmpfs tmpfp > tmpdf
452 yy=$?
453 if test $yy != '0' ; then
454 echo " $type , of='$optf'" | tee -a $OUTPFIL
455 #grep '^run: ' $outp
456 #grep '^run: ' $outs
457 #-- score for each test:
458 grep '^[YN] [YN] [YN] [YN]' tmpfs > tmploc 2>/dev/null
459 t_tot=`cat tmploc | wc -l | sed -e 's| ||g'`
460 t_pass=`grep '^Y Y Y Y' tmploc | grep 'pass ' | wc -l | sed -e 's| ||g'`
461 score_s=`printf '%2i' $t_pass`":$t_tot"
462 grep '^[YN] [YN] [YN] [YN]' tmpfp > tmploc 2>/dev/null
463 t_tot=`cat tmploc | wc -l | sed -e 's| ||g'`
464 t_pass=`grep '^Y Y Y Y' tmploc | grep 'pass ' | wc -l | sed -e 's| ||g'`
465 score_p=`printf '%2i' $t_pass`":$t_tot"
466 rm -f tmploc
467 #-- count Nb of different lines
468 ndf=`wc -l tmpdf | awk '{print $1}'`
469 ndf=`expr $ndf / 2`
470 nn=`grep -c '^---' tmpdf`
471 ndf=`expr $ndf - $nn`
472 if [ $ndf -le $NBLDIFF ] ; then
473 cat tmpdf
474 else
475 echo " $ndf lines differ ( $score_s , $score_p )"
476 fi
477 echo "< "`head -1 $outs`" ( $score_s )" >> $OUTPFIL
478 echo "> "`head -1 $outp`" ( $score_p )" >> $OUTPFIL
479 cat tmpdf >> $OUTPFIL
480 if [ $cdif -eq 0 ] ; then
481 clin=`printf '%3i (%5s,%5s)' $ndf $score_s $score_p`
482 else
483 clin="$clin,"`printf '%3i (%5s,%5s)' $ndf $score_s $score_p`
484 fi
485 cdif=`expr $cdif + 1`
486 echo '----------------------------------------' | tee -a $OUTPFIL
487 else
488 echo " $type , of='$optf'" | tee -a $OUTPFIL
489 fi
490 rm -f tmpfs tmpfp tmpdf
491 fi
492 done
493 if [ $cmis -gt 0 ] ; then tmis='(-'$cmis')' ; else tmis='(--)' ; fi
494 printf '%11s : %3i %4s %3i ' $sname $ctot $tmis $cdif >> $OUTPSUM
495 if [ $cdif -gt 0 ] ; then
496 echo " $clin" >> $OUTPSUM
497 else echo "" >> $OUTPSUM ; fi
498 fi
499
500 done
501
502 echo "Start time: $sTime" | tee -a $OUTPFIL
503 echo "End time: "`date` | tee -a $OUTPFIL | tee -a $OUTPSUM
504
505 rm -f ./dir_all ./slist ./plist
506 if test $OUTPFIL = "TTT.$$" ; then rm -f $OUTPFIL ; fi
507 if test "x$ADDRESS" != 'xnone' ; then
508 echo ".. send $OUTPSUM to $ADDRESS"
509 mail -s $OUTPSUM $ADDRESS < $OUTPSUM
510 fi
511 echo ".. cat $OUTPSUM"
512 cat $OUTPSUM
513 exit 0

  ViewVC Help
Powered by ViewVC 1.1.22