17 lines
268 B
Bash
Executable File
17 lines
268 B
Bash
Executable File
#!/bin/sh
|
|
|
|
currDir=`pwd`
|
|
application=`basename $currDir`
|
|
cases="flange"
|
|
|
|
tutorialPath=`dirname $0`/..
|
|
. $tutorialPath/CleanFunctions
|
|
|
|
for case in $cases
|
|
do
|
|
cleanCase $case
|
|
rm -rf $case/Fieldview > /dev/null 2>&1
|
|
rm -rf $case/EnSight > /dev/null 2>&1
|
|
done
|
|
|