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