=================================================================== RCS file: /home/cvs/OpenXM/rc/gen-shell-scripts,v retrieving revision 1.5 retrieving revision 1.8 diff -u -p -r1.5 -r1.8 --- OpenXM/rc/gen-shell-scripts 2000/03/04 11:03:36 1.5 +++ OpenXM/rc/gen-shell-scripts 2000/03/06 09:16:08 1.8 @@ -1,32 +1,35 @@ #!/bin/sh -# $OpenXM: OpenXM/rc/gen-shell-scripts,v 1.4 2000/02/01 12:01:31 takayama Exp $ +# $OpenXM: OpenXM/rc/gen-shell-scripts,v 1.7 2000/03/06 08:08:11 takayama Exp $ #asir rm -f asir echo "#!/bin/csh" >asir cat dot.cshrc >>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 chmod +x asir #sm1 rm -f sm1 echo "#!/bin/csh" >sm1 cat dot.cshrc >>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 chmod +x sm1 #gp rm -f oxgp echo "#!/bin/csh" >oxgp cat dot.cshrc >>oxgp - echo 'exec $OpenXM_HOME/bin/fep $OpenXM_HOME/bin/gp $*' >>oxgp + echo 'exec $OpenXM_HOME/bin/gp $*' >>oxgp chmod +x oxgp #oxmath rm -f oxmath echo "#!/bin/csh" >oxmath cat dot.cshrc >>oxmath - echo 'exec $OpenXM_HOME/bin/fep math $*' >>oxmath +# echo 'exec $OpenXM_HOME/bin/fep math $*' >>oxmath + echo 'exec math $*' >>oxmath chmod +x oxmath #oxMathematica