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