repo.or.cz
/
foam-extend-3.2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
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
blob
f6ab35fb326f191234e3cb05637a9517137dbec5
1
#!/bin/bash
2
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
8
9
cd
$1
10
rm
-rf
0
/
solid
11
rm
-rf
constant
/
solid
12
rm
-rf
system
/
solid
13
cd
..