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