20 lines
628 B
Bash
20 lines
628 B
Bash
# name=summary.`date --rfc-3339=seconds`
|
|
|
|
# echo Subject: Dell Cluster log summary
|
|
# echo
|
|
|
|
for lfile in `cat /home/ignis/log_notification_mailer/sample.list`
|
|
do
|
|
echo $lfile
|
|
tail -n 10000 $lfile/job.*.out | grep "Time\|(T)\|(p)\|(Phi)" | tail -n 10
|
|
echo ================================================================================
|
|
tail -n 5 $lfile/job.*.out
|
|
echo
|
|
done
|
|
|
|
for lfile in `cat /home/ignis/log_notification_mailer/sample.list`
|
|
do
|
|
uuencode $lfile/OHsurface.png $(basename $lfile)-OHsurface.png
|
|
uuencode $lfile/Tsurface.png $(basename $lfile)-Tsurface.png
|
|
uuencode $lfile/Tplot.png $(basename $lfile)-Tplot.png
|
|
done
|