Ruby Language
環境変数
サーチ…
構文
- ENV [変数名]
- ENV.fetch(variable_name、default_value)
備考
ウィンドウ下でのスクリプト作成のための動的な方法でユーザープロファイルのパスを取得させる
ユーザープロファイルパスを取得するサンプル
# 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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow