Subversion Repositories lagranto.wrf

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

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