Subversion Repositories lagranto.um

Rev

Rev 5 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5 Rev 6
1
#!/bin/csh
1
#!/bin/csh
2
 
2
 
3
# Set Lagranto 
3
# Set Lagranto 
4
set LAGRANTO = ${LAGRANTOBASE}.${MODEL}/
4
set LAGRANTO = ${LAGRANTOBASE}.${MODEL}/
5
 
5
 
6
# Write usage information
6
# Write usage information
7
if ( ${#argv} == 0) then
7
if ( ${#argv} == 0) then
8
  echo 
8
  echo 
9
  ${LAGRANTO}/bin/lagrantohelp newtime short
9
  ${LAGRANTO}/bin/lagrantohelp newtime short
10
  echo  
10
  echo  
11
  exit 0
11
  exit 0
12
endif
12
endif
13
 
13
 
14
${LAGRANTO}/goodies/newtime $*
14
${LAGRANTO}/goodies/newtime $*
15
 
15
 
16
exit 0
16
exit 0
17
 
17