blob: ef912324e7f2d6653a1fb6f0f60b39757d0d7031 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
if [ $# = 0 ]
then
echo "usage: Example1.access directory" 1>&2
exit 1
fi
ln -s "$1"/data/proc/P*.c2m .
ln -s "$1"/data/cpo/C* .
ls
echo "Example1 access script terminated"
|