Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / solidMechanics / icoFsiElasticNonLinULSolidFoam / HronTurekFsi / removeSerialLinks
blobf6ab35fb326f191234e3cb05637a9517137dbec5
1 #!/bin/bash
3 # Check for proper number of command line args.
4 if [ "$#" -ne 2 ]; then
5 echo "Usage: removeSerialLinks fluidCase solidCase"
6 exit 1
7 fi
9 cd $1
10 rm -rf 0/solid
11 rm -rf constant/solid
12 rm -rf system/solid
13 cd ..