Environment variables: Difference between revisions

Content deleted Content added
new Make
new Gri
Line 297:
SHELL has value /bin/bash
</pre>
 
=={{header|Gri}}==
Command <code>get env</code> fetches an environment variable into a synonym (a string)
<lang Gri>get env \foo HOME
show "\foo"</lang>
 
Quotes can be used in the usual way if the environment variable name contains spaces (which is unusual, but possible).
<lang Gri>get env \foo "X Y Z"</lang>
 
=={{header|Groovy}}==