mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
13 lines
189 B
Bash
Executable File
13 lines
189 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cases="angledDuctExplicit angledDuctImplicit"
|
|
application=${PWD##*/}
|
|
|
|
tutorialPath=`dirname $0`/..
|
|
. $tutorialPath/CleanFunctions
|
|
|
|
for case in $cases
|
|
do
|
|
cleanCase $case
|
|
done
|