finally drop references to ~/.OpenFOAM-<ver> (use ~/.OpenFOAM/<ver>)

This commit is contained in:
Mark Olesen
2009-05-07 10:37:55 +02:00
parent 1cdbeb29d7
commit d2a78f7e96
4 changed files with 103 additions and 99 deletions

View File

@ -48,15 +48,19 @@ logReport () {
UzSS=`grep -E "Uz[:| ]*solution singularity" $1`
completed=`grep -E "^[\t ]*[eE]nd" $1`
if [ "$fatalError" ] ; then
if [ "$fatalError" ]
then
echo "$appAndCase: ** FOAM FATAL ERROR **"
return
elif [ "$UxSS" -a "$UySS" -a "$UzSS" ] ; then
elif [ "$UxSS" -a "$UySS" -a "$UzSS" ]
then
echo "$appAndCase: ** Solution singularity **"
return
elif [ "$completed" ] ; then
elif [ "$completed" ]
then
completionTime=`tail -10 $log | grep Execution | cut -d= -f2 | sed 's/^[ \t]*//'`
if [ "$completionTime" ] ; then
if [ "$completionTime" ]
then
completionTime="in $completionTime"
fi
echo "$appAndCase: completed $completionTime"
@ -90,5 +94,4 @@ done
find . -name "log.*" -exec cat {} \; >> logs
# ----------------------------------------------------------------- end-of-file