'set' is not a good way to check the environment, since it also shows shell variables that are not yet exported.
The portable way to check the environment is 'env'.
On 12/31/10 6:19 PM, Dan Kegel wrote:
'set' is not a good way to check the environment, since it also shows shell variables that are not yet exported.
The portable way to check the environment is 'env'.
True. Let me check this.
correction:
env | grep LIBRARY
James McKenzie