blob: 95dda154a986d1bca42fc60eaea40f0719912607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/sh
if [ $# = 0 ]
then
echo "usage: pincell_mpo_concat.access directory" 1>&2
exit 1
fi
MACH=`uname -s`
Sysx="`echo $MACH | cut -b -6`"
if [ $Sysx = "CYGWIN" ]; then
MACH=`uname -o`
elif [ $Sysx = "Darwin" ]; then
MACH=`uname -sm`
elif [ $Sysx = "SunOS" ]; then
MACH=`uname -sm`
fi
ln -s "$1"/data/pincell_mpo_concat_proc/MyMpo1.hdf .
ln -s "$1"/data/pincell_mpo_concat_proc/MyMpo2.hdf .
ls -l
echo "pincell_mpo_concat access script terminated"
|