Ruby Language
Omgevingsvariabelen
Zoeken…
Syntaxis
- ENV [variable_name]
- ENV.fetch (variabele_naam, standaardwaarde)
Opmerkingen
Laten we het gebruikersprofielpad op een dynamische manier ophalen voor scripting onder Windows
Voorbeeld om het gebruikersprofielpad te krijgen
# will retrieve my home path
ENV['HOME'] # => "/Users/username"
# will try retrieve the 'FOO' environment variable. If failed, will get 'bar'
ENV.fetch('FOO', 'bar')
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow