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

14 lines
186 B
Bash
Executable File

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