Ruby Language
variabili ambientali
Ricerca…
Sintassi
- ENV [nome_variabile]
- ENV.fetch (nome_variabile, valore_predefinito)
Osservazioni
Consenti di ottenere il percorso del profilo utente in modo dinamico per lo scripting in Windows
Esempio per ottenere il percorso del profilo utente
# 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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow