[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.8 and 1.9

version 1.8, 2000/03/06 09:16:08 version 1.9, 2001/09/18 05:30:55
Line 1 
Line 1 
 #!/bin/sh  #!/bin/sh
 # $OpenXM: OpenXM/rc/gen-shell-scripts,v 1.7 2000/03/06 08:08:11 takayama Exp $  # $OpenXM: OpenXM/rc/gen-shell-scripts,v 1.8 2000/03/06 09:16:08 takayama Exp $
   
 #asir  #asir
         rm -f asir          rm -f asir
         echo "#!/bin/csh" >asir          echo "#!/bin/sh" >asir
         cat dot.cshrc >>asir          cat dot.bashrc >>asir
 #       echo 'exec $OpenXM_HOME/bin/fep $OpenXM_HOME/bin/asir $*' >>asir  #       echo 'exec $OpenXM_HOME/bin/fep $OpenXM_HOME/bin/asir $*' >>asir
         echo 'exec $OpenXM_HOME/bin/asir $*' >>asir          echo 'exec $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/sh" >sm1
         cat dot.cshrc >>sm1          cat dot.bashrc >>sm1
 #       echo 'exec $OpenXM_HOME/bin/fep $OpenXM_HOME/bin/sm1 $*' >>sm1  #       echo 'exec $OpenXM_HOME/bin/fep $OpenXM_HOME/bin/sm1 $*' >>sm1
         echo 'exec $OpenXM_HOME/bin/sm1 $*' >>sm1          echo 'exec $OpenXM_HOME/bin/sm1 $*' >>sm1
         chmod +x sm1          chmod +x sm1
   
 #gp  #gp
         rm -f oxgp          rm -f oxgp
         echo "#!/bin/csh" >oxgp          echo "#!/bin/sh" >oxgp
         cat dot.cshrc >>oxgp          cat dot.bashrc >>oxgp
         echo 'exec $OpenXM_HOME/bin/gp $*' >>oxgp          echo 'exec $OpenXM_HOME/bin/gp $*' >>oxgp
         chmod +x oxgp          chmod +x oxgp
   
 #oxmath  #oxmath
         rm -f oxmath          rm -f oxmath
         echo "#!/bin/csh" >oxmath          echo "#!/bin/sh" >oxmath
         cat dot.cshrc >>oxmath          cat dot.bashrc >>oxmath
 #       echo 'exec $OpenXM_HOME/bin/fep math $*' >>oxmath  #       echo 'exec $OpenXM_HOME/bin/fep math $*' >>oxmath
         echo 'exec math $*' >>oxmath          echo 'exec math $*' >>oxmath
         chmod +x oxmath          chmod +x oxmath
   
 #oxMathematica  #oxMathematica
         rm -f oxMathematica          rm -f oxMathematica
         echo "#!/bin/csh" >oxMathematica          echo "#!/bin/sh" >oxMathematica
         cat dot.cshrc >>oxMathematica          cat dot.bashrc >>oxMathematica
         echo 'exec Mathematica  $*' >>oxMathematica          echo 'exec Mathematica  $*' >>oxMathematica
         chmod +x oxMathematica          chmod +x oxMathematica
   
 #ox  (launcher of kxx)  #ox  (launcher of kxx)
         rm -f ox          rm -f ox
         echo "#!/bin/csh" >ox          echo "#!/bin/sh" >ox
         cat dot.cshrc >>ox          cat dot.bashrc >>ox
         echo 'exec $OpenXM_HOME/bin/ox $*' >>ox          echo 'exec $OpenXM_HOME/bin/ox $*' >>ox
         chmod +x ox          chmod +x ox

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

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