source: lmdz_wrf/trunk/tools/link_essentials.bash @ 2370

Last change on this file since 2370 was 2360, checked in by lfita, 6 years ago

Adding and creating the script to link all the 'essentials' to run PyNCplot locally in a given folder

  • Property svn:executable set to *
File size: 479 bytes
Line 
1#!/bin/bash
2if test $1 = '-h'; then
3  echo "********************************"
4  echo "***   Shell script to link  ***"
5  echo "*** the PyNCplot essentials ***"
6  echo "*** into the current folder ***"
7  echo "*******************************"
8  echo "link_essentials.bash"
9else
10  rootsh=`pwd`
11 
12  ln -s ${pyHOME}/generic_tools.py ./
13  ln -s ${pyHOME}/nc_var_tools.py ./
14  ln -s ${pyHOME}/drawing_tools.py ./
15  ln -s ${pyHOME}/*.so ./
16  ln -s ${pyHOME}/variables_values.dat ./
17fi
Note: See TracBrowser for help on using the repository browser.