1. EXU problems
I have 2 computers, one with Mandrake linux and one with DOS and Win98.
The interpreter for DOS and Win98 work perfectly, but I'm having
problems
with EXU under linux. The problem is when I try to run the interpreter
ie. exu key.ex, it gives a bash error, no such command or filename.
It gives this error even when I'm in euphoria\bin!! Linux reports that
exu is an executable, but it still doesn't allow me to execute it.
I added the PATH and EUDIR variables to .bash_profile, but I still
can't do it.
Does anyone know why this happens, and how to fix it?
__________________________________________________
Do You Yahoo!?
Get Yahoo! Mail – Free email you can access from anywhere!
http://mail.yahoo.com/
2. Re: EXU problems
Timothy Hemphill wrote:
> I have 2 computers, one with Mandrake linux and one with DOS and Win98.
> The interpreter for DOS and Win98 work perfectly, but I'm having
> problems
> with EXU under linux. The problem is when I try to run the interpreter
> ie. exu key.ex, it gives a bash error, no such command or filename.
> It gives this error even when I'm in euphoria\bin!! Linux reports that
> exu is an executable, but it still doesn't allow me to execute it.
> I added the PATH and EUDIR variables to .bash_profile, but I still
> can't do it.
> Does anyone know why this happens, and how to fix it?
>
> __________________________________________________
> Do You Yahoo!?
> Get Yahoo! Mail - Free email you can access from anywhere!
> http://mail.yahoo.com/
Make sure you export the shell variables. For example, in .bash_profile,
you might have:
export EUDIR=/usr/local/euphoria
export PATH=$PATH:/usr/local/euphoria/bin
Note that there is a unix command called ed, so you might want to change
it to:
export PATH=/usr/local/euphoria/bin:$PATH
so it finds Euphoria's ed program first.
Jeff Fielding
JJProg at cyberbury.net
3. Re: EXU problems
> Does anyone know why this happens, and how to fix it?
If all else fails try the old dot-slash....from euphoria/bin
ie: ./exu key.ex