Files
openfoam/tutorials/rhopSonicFoam/Allclean
2008-04-15 18:56:58 +01:00

21 lines
307 B
Bash
Executable File

#!/bin/sh
currDir=`pwd`
application=`basename $currDir`
cases="shockTube wedge15Ma5"
tutorialPath=`dirname $0`/..
. $tutorialPath/CleanFunctions
for case in $cases
do
if [ "$case" = "shockTube" ]
then
rm -rf $case/0
cp -r $case/0.org $case/0
fi
cleanCase $case
done