blob: e0c0c5e8b5547d5121607bd78579763b91a0c1c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
if [ $# = 0 ]
then
echo "usage: Test_microdepl_NCR.access directory" 1>&2
exit 1
fi
cp "$1"/data/Test_microdepl_NCR_proc/_Compo_1BU.txt .
ls -l
echo "Test_microdepl_NCR access script terminated"
|