Re: Limitations in IDL 5.4 [message #26276] |
Mon, 20 August 2001 11:42 |
Stein Vidar Hagfors H[1]
Messages: 56 Registered: February 2000
|
Member |
|
|
thompson@orpheus.nascom.nasa.gov (William Thompson) writes:
> [..] IDL 5.4 doesn't properly flush standard output. For example, try this
> simple script with the command "at -c -f testfile now"
>
> #!/bin/csh
> idl << done
> print,'Hello'
> done
>
> You won't get any output at all with IDL 5.4. RSI is aware of this problem.
>
Is it possible to work around with FLUSH, e.g:
#!/bin/csh
idl << done
print,'Hello'
flush,-1
done
(Don't have 5.4 here..)
--
------------------------------------------------------------ --------------
Stein Vidar Hagfors Haugan
ESA SOHO SOC/European Space Agency Science Operations Coordinator for SOHO
NASA Goddard Space Flight Center, Email: shaugan@esa.nascom.nasa.gov
Mail Code 682.3, Bld. 26, Room G-1, Tel.: 1-301-286-9028/240-354-6066
Greenbelt, Maryland 20771, USA. Fax: 1-301-286-0264
------------------------------------------------------------ --------------
|
|
|