#! /bin/csh
        echo "Input: multiexpload  file_extension instrument. Where file extension is not the type"
        echo "of file but whatever the file extension is for the lod file (e.g. *ext.lod)"
        echo "Input file extension instrument"
	set inst = $2
        echo $inst
	set filet = $1
        echo $filet
        echo "Script to expload using wild cards *"$filet".lod for Instrument "$inst 
        foreach vv (*$filet.lod)
                expload $vv $vv "/store/smalls/cdbs/tools/data/"$inst".rule"
        end
        exit 0
