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