blob: 88af56145a396ae9c21e6bf9b690d2c60f2c2267 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
if [ $# = 0 ]
then
echo "usage: thm_salt.access directory" 1>&2
exit 1
fi
ln -s "$1"/data/thm_salt_proc/MSTPDB.data MSTPDB.data
ls -l
echo "thm_salt access script terminated"
|