This repository has been archived on 2026-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
slurm-job-log-mailer/log_summary.sh
2019-06-27 16:53:49 +09:00

13 lines
428 B
Bash

# name=summary.`date --rfc-3339=seconds`
# echo Subject: Dell Cluster log summary
# echo
for lfile in `python /home/ignis/log_notification_mailer/query_slurm.py`
do
echo $lfile
echo --------------------------------------------------------------------------------
tail -n 10000 $lfile | grep "Time\|(T)\|(p)\|(Phi)" | tail -n 10
echo ================================================================================
echo
done