8/18 Hi again, new freebsd guy here again, in bash I was able to go
LD_LIBRARY_PATH=/opt/foo/lib ./runmyapp
I managed to do this in tcsh by using setenv in a shell script
that setenv's the lib path and then executes $1, just wondering
if there was a way to do it in 1 line from the cmd line as in bash?
Thanks, btw %2c or %3c worked. Freebsd, tcsh and vi forever!
Go Bears!
\_ env LD_LIBRARY_PATH=/opt/foo/lib ./runmyapp
\_ aha! i was using that but with set instead of env, and once
with setenv. I shoulda tried env, thanks!! |