annotate octave.sh @ 1046:d1bd01d11e1e
[project @ 1995-01-19 14:33:49 by jwe]
author |
jwe |
date |
Thu, 19 Jan 1995 14:33:49 +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 $* |