12 lines
339 B
Bash
Executable file
12 lines
339 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
|
|
find $lfile/processor* -name h | xargs rm
|
|
reconstructPar -latestTime -case $lfile
|
|
done
|