in reply to Re: Setting a library path (export) to call SSH
in thread Setting a library path (export) to call SSH

Or to isolate the LIBPATH setting to just where needed...

{ local $ENV{LIBPATH} = "/opt/freeware/lib:/opt/freeware/64/lib:/usr/l +ib:$ENV{LIBPATH}"; # execute ssh command here }

--MidLifeXis

Replies are listed 'Best First'.
Re^3: Setting a library path (export) to call SSH
by Spaceman_Spiff65 (Initiate) on Jul 10, 2013 at 14:52 UTC
    Thank you all for the wisdom and suggestions, much appreciated!!