+ in !PATH [message #56941] |
Wed, 28 November 2007 09:50  |
Foldy Lajos
Messages: 268 Registered: October 2001
|
Senior Member |
|
|
Hi guys,
+ in !PATH does not work for me. Any idea?
thanks,
lajos
IDL> print, !version
{ x86_64 linux unix linux 6.4 Apr 26 2007 64 64}
IDL>
IDL> !path='+/usr/local/itt/idl/lib'
IDL> print, !path
+/usr/local/itt/idl/lib
IDL>
IDL> time_test3
% Attempt to call undefined procedure/function: 'TIME_TEST3'.
% Execution halted at: $MAIN$
IDL>
IDL> $ls -l /usr/local/itt/idl/lib/time_test3.pro
-rw-r--r-- 1 root root 831 2007-04-26 22:47 /usr/local/itt/idl/lib/time_test3.pro
IDL>
|
|
|
Re: + in !PATH [message #56988 is a reply to message #56941] |
Thu, 29 November 2007 13:58  |
Ed Wright
Messages: 39 Registered: February 1999
|
Member |
|
|
F�LDY Lajos wrote:
> Hi guys,
>
> + in !PATH does not work for me. Any idea?
>
> thanks,
> lajos
>
>
> IDL> print, !version
> { x86_64 linux unix linux 6.4 Apr 26 2007 64 64}
> IDL>
> IDL> !path='+/usr/local/itt/idl/lib'
> IDL> print, !path
> +/usr/local/itt/idl/lib
It seems you have a typo in your !path assignment.
I suspect you intended to use
!path += '/usr/local/itt/idl/lib'
As always,
Ed Wright
ed.wright of jpl.nasa.gov
--
DISCLAIMER: JPL requires notice in all electronic communication that
any and all opinions presented herein are my own and do not, in any
way, represent the opinion or policy of JPL, CalTech, NASA, or the US
Government.
Disclaimers are without standing on traffic from this domain.
|
|
|