Chinaunix首页 | 论坛 | 博客
  • 博客访问: 574831
  • 博文数量: 207
  • 博客积分: 10128
  • 博客等级: 上将
  • 技术积分: 2440
  • 用 户 组: 普通用户
  • 注册时间: 2004-10-10 21:40
文章分类

全部博文(207)

文章存档

2009年(200)

2008年(7)

我的朋友

分类:

2009-04-08 15:26:17

Environment variables are passed to programs by the or the graphical shell. Though there are a number of environment variables that only affect the command line or graphical shell itself (such as PATH or HOME), there are also several that directly affect how execute.

Accessing Environment Variables from Ruby

Ruby has direct access to environment variables via the ENV . Environment variables can be directly read or written to by using the with a . Note that writing to environment variables will only have an effect on child processes of the Ruby script. Other invocations of the script will not see the changes in environment variables.

#!/usr/bin/env ruby

# Print some variables
puts ENV['PATH']
puts ENV['EDITOR']

# Change a variable then launch a new program
ENV['EDITOR'] = 'gedit'
`cheat environment_variables --add`

Passing Environment Variables to Ruby

To pass environment variables to Ruby, simply set that environment variable in the shell. This varies slightly between operating systems, but the concepts remain the same.

To set an environment variable on the Windows command prompt, use the set command.

> set TEST=value

To set an environment variable on Linux or OS X, use the export command. Though environment variables are a normal part of the Bash shell, only variables that have been exported will be available in programs launched by the Bash shell.

$ export TEST=value

Alternatively, if the environment variable will only be used by the program about to be run, you can define any environment variables before the name of the command. The environment variable will be passed onto the program as its run, but not saved. Any further invocations of the program will not have this environment variable set.

$ EDITOR=gedit cheat environment_variables --add

Environment Variables Used by Ruby

There are a number of environment variables that effect how the Ruby interpreter acts.

  • RUBYOPT - Any command line switches here will be added to any switches specified on the command line.
  • RUBYPATH - When used with the -S switch on the command line, the paths listed in RUBYPATH will be added to the paths searched when looking for Ruby scripts. The paths in RUBYPATH precede the paths listed in PATH.
  • RUBYLIB - The list of paths here will be added to the list of paths Ruby uses to search for libraries included in the program with the . The paths in RUBYLIB will be searched before other directories.
阅读(741) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~