To see what environmental variables are set to (variables such as
LD_LIBRARY_PATH) type this:
set
or to just see the LD_LIBRARY_PATH then
set | grep LD_LIBRARY_PATH
Jamie
> For example (using bash syntax),
>
> export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/lib/themes/engines
>
> if you already have an LD_LIBRARY_PATH, or
>
> export LD_LIBRARY_PATH=/usr/lib/themes/engines
>
> if you don't.
>
> If you use this often, you'll probably want to set it in your .profile or
> .bash_profile, so you'll get it every time you log on.
>
> - Neil Parker, [EMAIL PROTECTED]