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