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 remote-tracking branch 'origin/nr/HakanNilsson_axialTurbineTutUpd' into nextRelease
[foam-extend-3.2.git]
/
tutorials
/
solidMechanics
/
icoFsiElasticNonLinULSolidFoam
/
HronTurekFsi
/
makeSerialLinks
blob
b3453576fec16b2b6c1098a5558281079ec06b3e
1
#!/bin/bash
2
3
# Check for proper number of command line args.
4
if
[
"
$#
"
-ne
2
];
then
5
echo
"Usage: makeSerialLinks fluidCase solidCase"
6
exit
1
7
fi
8
9
cd
$1
10
cd
constant
11
ln
-s
..
/
..
/
$2
/
constant solid
12
cd
..
/
system
13
ln
-s
..
/
..
/
$2
/
system solid
14
cd
..
/
0
15
ln
-s
..
/
..
/
$2
/
0
solid
16
cd
..
/
..