blob: 6a582d49216abc560ab9f49ca2ae5a270b930850 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
if [ $# = 0 ]
then
echo "usage: tmacro.access directory" 1>&2
exit 1
fi
ln -s $1/data/tmacro_proc/AIC_SN_CCOND2.ref .
ln -s $1/data/tmacro_proc/Godiva_2001_Bugle96_47n.txt .
ln -s $1/data/tmacro_proc/caskmix_FMAC-M.txt .
ln -s $1/data/tmacro_proc/W_6MeV_e_CSD.txt .
ln -s $1/data/tmacro_proc/W_6MeV_ph_CSD.txt .
ln -s $1/data/tmacro_proc/W_6MeV_e_ph_CSD.txt .
ln -s $1/data/tmacro_proc/Al_1MeV_CSD_P7.txt .
ln -s $1/data/tmacro_proc/air_water_bone_lung.txt .
ln -s $1/data/tmacro_proc/radiant_fmac.txt .
ls -l
echo "tmacro access script terminated"
|