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