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

16 lines
210 B
Bash
Executable File

#!/bin/sh
currDir=`pwd`
application=`basename $currDir`
cases="mixerVessel2D"
tutorialPath=`dirname $0`/..
. $tutorialPath/CleanFunctions
wclean $application
for case in $cases
do
cleanCase $case
done