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