root / examples / Test / Zmat / run_Path @ 5
Historique | Voir | Annoter | Télécharger (1,01 ko)
1 |
#!/bin/bash |
---|---|
2 |
|
3 |
###################################### |
4 |
# |
5 |
# you might have to change the following variables |
6 |
# |
7 |
###################################### |
8 |
# |
9 |
# Name of the input file |
10 |
# |
11 |
Job=HCN_zmat |
12 |
# |
13 |
# Where is Path.exe ?? |
14 |
# |
15 |
PathExe=../../../src/Path.exe |
16 |
# |
17 |
|
18 |
# Some libraries... that might need to be adapted to your system |
19 |
# |
20 |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/lib/ |
21 |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/intel/fc/9.1.037/lib/:/opt/intel/cc/9.1.045/lib:/usr/lib:/opt/intel/mkl/8.1/lib/32 |
22 |
export PATH=/opt/intel/fc/9.1.037/bin/:/opt/intel/cc/9.1.045/bin/:$PATH:$HOME/bin:/usr/local/mpich-intel9/bin |
23 |
export LD_RUN_PATH=$LD_RUN_PATH:/opt/intel/fc/9.1.037/lib/:/opt/intel/cc/9.1.045/lib |
24 |
export MANPATH=$MANPATH:/opt/intel/fc/9.1.037/man/:/opt/intel/cc/9.1.045/man |
25 |
export LANG=C |
26 |
# |
27 |
#Usually nothing has to be changed after this line |
28 |
# |
29 |
################################################# |
30 |
|
31 |
############################### |
32 |
# |
33 |
# We launch PATH |
34 |
# |
35 |
############################### |
36 |
ln -fs ${PathExe} . |
37 |
|
38 |
./Path.exe ${Job}.path &> ${Job}.out |
39 |
|
40 |
|
41 |
|