Is it possible to see a list of all system variables and what their values are? The variables are the ones where you can do "SET something=something" and then you can do 'echo something'.
See Exports
Started by Prog, Feb 06 2008 10:53 AM
2 replies to this topic
#1
Posted 06 February 2008 - 10:53 AM
|
|
|
#2
Posted 06 February 2008 - 09:56 PM
You can use env.
$ env # You can append the grep statement to search in the list $ env | grep "specificvariable" # And you can also use env to remove variables $ env --unset=VARIABLENAME
#3
Posted 15 February 2008 - 05:47 AM
That works, thank you.


Sign In
Create Account


Back to top









