14 lines
232 B
Bash
Executable file
14 lines
232 B
Bash
Executable file
#!/bin/sh
|
|
|
|
currDir=`pwd`
|
|
application=`basename $currDir`
|
|
cases="springDamper sixDOFmotion"
|
|
|
|
tutorialPath=`dirname $0`/..
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
for case in $cases
|
|
do
|
|
cleanCase $case
|
|
rm $case/*.dat
|
|
done
|