diff --git a/tutorials/incompressible/pimpleDyMFoam/propeller/Allclean b/tutorials/incompressible/pimpleDyMFoam/propeller/Allclean
index 7be04a3babde2d1dccf2e93522c5ad6222f04473..d6c94ef47060488dcfb5031a29feb528cb553541 100755
--- a/tutorials/incompressible/pimpleDyMFoam/propeller/Allclean
+++ b/tutorials/incompressible/pimpleDyMFoam/propeller/Allclean
@@ -5,10 +5,10 @@ cd ${0%/*} || exit 1    # run from this directory
 . $WM_PROJECT_DIR/bin/tools/CleanFunctions
 
 # remove surface
-\rm -f constant/triSurface/propellerTip.obj.gz
+\rm -f constant/triSurface/propellerTip.obj.gz > /dev/null 2>&1
 
 cleanCase
 
-\rm -rf 0
-\rm -rf constant/extendedFeatureEdgeMesh/
-\rm -f constant/triSurface/*.eMesh*
+\rm -rf 0 > /dev/null 2>&1
+\rm -rf constant/extendedFeatureEdgeMesh > /dev/null 2>&1
+\rm -f constant/triSurface/*.eMesh* > /dev/null 2>&1
diff --git a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/Allclean b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/Allclean
index 90aefb74513ee2d22393377a01dae4a13a978e87..b4a37331376dee05c6c750d28afbeaa1720e9110 100755
--- a/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/Allclean
+++ b/tutorials/incompressible/porousSimpleFoam/straightDuctImplicit/Allclean
@@ -4,10 +4,10 @@ cd ${0%/*} || exit 1    # run from this directory
 # Source tutorial clean functions
 . $WM_PROJECT_DIR/bin/tools/CleanFunctions
 
-rm *.obj
-rm -r constant/extendedFeatureEdgeMesh
-rm constant/triSurface/boundaryAndFaceZones.eMesh
-rm constant/polyMesh/boundary
+rm *.obj > /dev/null 2>&1
+rm -r constant/extendedFeatureEdgeMesh > /dev/null 2>&1
+rm constant/triSurface/boundaryAndFaceZones.eMesh > /dev/null 2>&1
+rm constant/polyMesh/boundary > /dev/null 2>&1
 
 cleanCase
 
diff --git a/tutorials/incompressible/simpleFoam/motorBike/Allclean b/tutorials/incompressible/simpleFoam/motorBike/Allclean
index 25434c9d020ccd96ae202e35e0dc296d3bc685c8..17464e7020d3cbe606b694c058f2d1c71d24a128 100755
--- a/tutorials/incompressible/simpleFoam/motorBike/Allclean
+++ b/tutorials/incompressible/simpleFoam/motorBike/Allclean
@@ -4,9 +4,9 @@
 . $WM_PROJECT_DIR/bin/tools/CleanFunctions
 
 # remove surface and features
-\rm -f constant/triSurface/motorBike.obj.gz
-\rm -rf constant/extendedFeatureEdgeMesh/
-\rm -f constant/triSurface/motorBike.eMesh
+\rm -f constant/triSurface/motorBike.obj.gz > /dev/null 2>&1
+\rm -rf constant/extendedFeatureEdgeMesh > /dev/null 2>&1
+\rm -f constant/triSurface/motorBike.eMesh > /dev/null 2>&1
 
 rm -rf 0 > /dev/null 2>&1
 
diff --git a/tutorials/multiphase/interDyMFoam/ras/mixerVesselAMI/Allclean b/tutorials/multiphase/interDyMFoam/ras/mixerVesselAMI/Allclean
index faca6e0313ee2a810240c192c30c649d04d33d7a..3003ce80857881bfec583072782eb54ff480cdfd 100755
--- a/tutorials/multiphase/interDyMFoam/ras/mixerVesselAMI/Allclean
+++ b/tutorials/multiphase/interDyMFoam/ras/mixerVesselAMI/Allclean
@@ -6,8 +6,8 @@ cd ${0%/*} || exit 1    # run from this directory
 
 cleanCase
 
-\rm -rf 0
-\rm -rf constant/extendedFeatureEdgeMesh/
-\rm -f constant/triSurface/*.eMesh*
+\rm -rf 0 > /dev/null 2>&1
+\rm -rf constant/extendedFeatureEdgeMesh > /dev/null 2>&1
+\rm -f constant/triSurface/*.eMesh* > /dev/null 2>&1
 
 # ----------------------------------------------------------------- end-of-file
diff --git a/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/Allclean b/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/Allclean
index 7be04a3babde2d1dccf2e93522c5ad6222f04473..a1dffe125a1d22dfa7e2f671e354eb20fcf15334 100755
--- a/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/Allclean
+++ b/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/Allclean
@@ -9,6 +9,6 @@ cd ${0%/*} || exit 1    # run from this directory
 
 cleanCase
 
-\rm -rf 0
-\rm -rf constant/extendedFeatureEdgeMesh/
-\rm -f constant/triSurface/*.eMesh*
+\rm -rf 0 > /dev/null 2>&1
+\rm -rf constant/extendedFeatureEdgeMesh > /dev/null 2>&1
+\rm -f constant/triSurface/*.eMesh* > /dev/null 2>&1