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