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