How do I set an environment variable with a space in it, like LD_PRELOAD 
with more than one object to load?

I tried
        setenv LD_PRELOAD foo bar
        setenv LD_PRELOAD 'foo bar'
        setenv LD_PRELOAD "foo bar"
        setenv LD_PRELOAD foo\ bar
        setenv LD_PRELOAD (foo bar)

The only one that wasn't a syntax error was the one with double quotes, and 
it put the double quotes into the variable's value.

Reply via email to