11 lines
343 B
Bash
Executable file
11 lines
343 B
Bash
Executable file
#!/bin/bash
|
|
|
|
name=summary.`date --rfc-3339=seconds`
|
|
|
|
source $HOME/.bashrc
|
|
source ~/OpenFOAM/OpenFOAM-2.4.x/etc/bashrc WM_NCOMPPROCS=32; source ~/OpenFOAM/cantera/bin/setup_cantera
|
|
|
|
for lfile in `cat /home/ignis/log_notification_mailer/sample.list`
|
|
do
|
|
/home/ignis/ospv/bin/pvpython /home/ignis/log_notification_mailer/pv-notify.py $lfile
|
|
done
|