annotate octave.sh @ 686:0faebdd7df57
[project @ 1994-09-09 21:09:24 by jwe]
author |
jwe |
date |
Fri, 09 Sep 1994 21:10:43 +0000 |
parents |
71bcc230ecd3 |
children |
|
rev |
line source |
5
|
1 #!/bin/sh |
|
2 # |
|
3 # Wrapper for octave for binary installations that can't install |
|
4 # octave in /usr/local/bin. |
|
5 # |
|
6 # The real binary should be installed in as octave.bin, and this file |
|
7 # should be installed in the same directory as octave. |
|
8 |
|
9 OCTAVE_HOME=@OCTAVE_HOME@ |
|
10 export OCTAVE_HOME |
|
11 |
391
|
12 exec $OCTAVE_HOME/bin/octave.bin $* |