Various minor changes to tutorial scripts. In particular, ensuring that they all change to the containing directory so that batches of tutorials can be run easily from the root of the installation.
22 lines
569 B
Bash
Executable File
22 lines
569 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Source tutorial clean functions
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
dir=${PWD##*/}
|
|
|
|
echo "--------"
|
|
echo "Cleaning ${dir}s ..."
|
|
echo "Removing backup files"
|
|
find . -type f \( -name "*~" -o -name "*.bak" \) -exec rm {} \;
|
|
find . \( -name core -o -name 'core.[1-9]*' \) -exec rm {} \;
|
|
find . \( -name '*.pvs' -o -name '*.OpenFOAM' \) -exec rm {} \;
|
|
rm -rf logs testLoopReport
|
|
|
|
foamCleanTutorials cases
|
|
|
|
echo "--------"
|
|
|
|
#------------------------------------------------------------------------------
|