Subversion Repositories lagranto.arpege

Rev

Blame | Last modification | View Log | Download | RSS feed

#!/bin/csh


# Write usage information
if ( ${#argv} == 0) then
  echo 
  /home/binderh/prog/programs/lagranto.mf/bin/lagrantohelp lsl2rdf short
  echo  
  exit 0
endif

set inpfile=$1
set outfile=$2

set prog1=/home/binderh/prog/programs/lagranto.mf/goodies/lsl2rdf

set dim=`/home/binderh/prog/programs/lagranto.mf/goodies/trainfo.sh ${inpfile} dim` 

\rm -f lsl2rdf.param
echo \"${inpfile}\"       >! lsl2rdf.param
echo \"${outfile}\"       >> lsl2rdf.param
echo ${dim}               >> lsl2rdf.param

${prog1}

\rm -f lsl2rdf.param

exit 0