annotate octave.sh @ 1741:6ec1465f60f0
[project @ 1996-01-12 11:09:39 by jwe]
Initial revision
author |
jwe |
date |
Fri, 12 Jan 1996 11:09:39 +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 $* |