[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: env variables?



> how do i list all the system environment variables on my machine
if u know C 
extern char *environ[];
defined in unistd.h

environ is a global array of pointers that holds all env variables.

Neil