Subversion Repositories lagranto.ecmwf

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
19 michaesp 1
#!/bin/csh
2
 
3
 
4
# Write usage information
5
if ( ${#argv} == 0) then
6
  echo 
7
  ${LAGRANTO}/bin/lagrantohelp lsl2rdf short
8
  echo  
9
  exit 0
10
endif
11
 
12
set inpfile=$1
13
set outfile=$2
14
 
15
set prog1=${LAGRANTO}/goodies/lsl2rdf
16
 
17
set dim=`${LAGRANTO}/goodies/trainfo.sh ${inpfile} dim` 
18
 
19
\rm -f lsl2rdf.param
20
echo \"${inpfile}\"       >! lsl2rdf.param
21
echo \"${outfile}\"       >> lsl2rdf.param
22
echo ${dim}               >> lsl2rdf.param
23
 
24
${prog1}
25
 
26
\rm -f lsl2rdf.param
27
 
28
exit 0
29