Ruby Language
Variables d'environnement
Recherche…
Syntaxe
- ENV [nom_variable]
- ENV.fetch (nom_variable, valeur par défaut)
Remarques
Permet d'obtenir le chemin du profil utilisateur de manière dynamique pour les scripts sous Windows
Exemple pour obtenir le chemin du profil utilisateur
# 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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow