674d591804
surfaceTracking/interTrackFoam tutorials fixed. Other fixes to correct file attributes (remove executable flag).
31 lines
464 B
Bash
Executable file
31 lines
464 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. $WM_PROJECT_DIR/bin/tools/CleanFunctions
|
|
|
|
cleanFaMesh ()
|
|
{
|
|
rm -rf ./constant/faMesh/faceLabels* \
|
|
./constant/faMesh/boundary* \
|
|
> /dev/null 2>&1
|
|
}
|
|
|
|
cleanHistoryFolder ()
|
|
{
|
|
rm -rf ./history \
|
|
> /dev/null 2>&1
|
|
}
|
|
|
|
cleanAuxFolders ()
|
|
{
|
|
rm -rf forces \
|
|
> /dev/null 2>&1
|
|
|
|
rm -rf path \
|
|
> /dev/null 2>&1
|
|
}
|
|
|
|
cleanHistoryFolder
|
|
cleanTimeDirectories
|
|
cleanFaMesh
|
|
cleanAuxFolders
|
|
|