[BACK]Return to gen-shell-scripts CVS log [TXT][DIR] Up to [local] / OpenXM / rc

Diff for /OpenXM/rc/gen-shell-scripts between version 1.2 and 1.3

version 1.2, 2000/01/30 23:47:40 version 1.3, 2000/01/31 12:34:50
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # $OpenXM: OpenXM/rc/gen-shell-scripts,v 1.1 2000/01/30 10:40:43 takayama Exp $  # $OpenXM: OpenXM/rc/gen-shell-scripts,v 1.2 2000/01/30 23:47:40 takayama Exp $
   
 #asir  #asir
         rm -f asir          rm -f asir
         echo "#!/bin/csh" >asir          echo "#!/bin/csh" >asir
         cat dot.cshrc >>asir          cat dot.cshrc >>asir
         echo '$OpenXM_HOME/bin/fep $OpenXM_HOME/bin/asir $*' >>asir          echo 'exec $OpenXM_HOME/bin/fep $OpenXM_HOME/bin/asir $*' >>asir
         chmod +x asir          chmod +x asir
   
 #sm1  #sm1
         rm -f sm1          rm -f sm1
         echo "#!/bin/csh" >sm1          echo "#!/bin/csh" >sm1
         cat dot.cshrc >>sm1          cat dot.cshrc >>sm1
         echo '$OpenXM_HOME/bin/fep $OpenXM_HOME/bin/sm1 $*' >>sm1          echo 'exec $OpenXM_HOME/bin/fep $OpenXM_HOME/bin/sm1 $*' >>sm1
         chmod +x sm1          chmod +x sm1
   
 #gp  #gp
         rm -f gp          rm -f gp
         echo "#!/bin/csh" >gp          echo "#!/bin/csh" >gp
         cat dot.cshrc >>gp          cat dot.cshrc >>gp
         echo '$OpenXM_HOME/bin/fep $OpenXM_HOME/bin/gp $*' >>gp          echo 'exec $OpenXM_HOME/bin/fep $OpenXM_HOME/bin/gp $*' >>gp
         chmod +x gp          chmod +x gp
   
 #oxmath  #oxmath
         rm -f oxmath          rm -f oxmath
         echo "#!/bin/csh" >oxmath          echo "#!/bin/csh" >oxmath
         cat dot.cshrc >>oxmath          cat dot.cshrc >>oxmath
         echo '$OpenXM_HOME/bin/fep math $*' >>oxmath          echo 'exec $OpenXM_HOME/bin/fep math $*' >>oxmath
         chmod +x oxmath          chmod +x oxmath
   
 #oxMathematica  #oxMathematica
         rm -f oxMathematica          rm -f oxMathematica
         echo "#!/bin/csh" >oxMathematica          echo "#!/bin/csh" >oxMathematica
         cat dot.cshrc >>oxMathematica          cat dot.cshrc >>oxMathematica
         echo 'Mathematica  $*' >>oxMathematica          echo 'exec Mathematica  $*' >>oxMathematica
         chmod +x oxMathematica          chmod +x oxMathematica

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>