Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do i display all the env variables and value of a particular env variable on a solaris server?

share|improve this question

closed as off topic by Will Apr 15 '11 at 14:17

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

3 Answers

Open up a shell and type env. This will show you all environment variables in the current shell.

Use the name of a specific variable, prefix it with a $ and do echo $name to echo the value of the env variable name.

share|improve this answer

The way to display environment variables doesn't depends that much one the operating system, as far as Unix and Unix like systems are concerned.

If you want to know the exported variables, i.e. those that are inherited by subprocesses, you can use the export shell builtin/alias or the env command. Otherwise, set is the usual way to display all shell environment variables.

As already answered, for any specific variable, use echo $variable

share|improve this answer

You can view all environment variables using a shell with

set | more
share|improve this answer
csh does not show all environment variables using set – Anthon Mar 8 at 11:50

Not the answer you're looking for? Browse other questions tagged or ask your own question.