blob: b44a131e2b18cd2a315876db05d26f41e207b3ee (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
if [ $# = 0 ]
then
echo "usage: thm_salt_lf.access directory" 1>&2
exit 1
fi
cp "$1"/data/thm_salt_lf_proc/MSTPDB.data .
ls -l
echo "thm_salt_lf access script terminated"
|